Skip to content

Commit

Permalink
raft/consensus: missing broker id in log msg
Browse files Browse the repository at this point in the history
  • Loading branch information
andijcr committed Nov 29, 2023
1 parent 548f6c6 commit 736a80b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/v/raft/consensus.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1021,7 +1021,8 @@ consensus::update_group_member(model::broker broker) {
if (!cfg.contains_broker(broker.id())) {
vlog(
_ctxlog.warn,
"Node with id {} does not exists in current configuration");
"Node with id {} does not exists in current configuration",
broker.id());
return ss::make_ready_future<std::error_code>(
errc::node_does_not_exists);
}
Expand Down

0 comments on commit 736a80b

Please sign in to comment.