Skip to content

Commit

Permalink
Merge pull request #22959 from redpanda-data/vbotbuildovich/backport-…
Browse files Browse the repository at this point in the history
…22725-v24.1.x-155

[v24.1.x] c/members_table: fixed typo in applying remove node command
  • Loading branch information
piyushredpanda committed Aug 20, 2024
2 parents 6fb63d2 + 287d50e commit e1da545
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/v/cluster/members_table.cc
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,7 @@ std::error_code members_table::apply(model::offset o, update_node_cfg_cmd cmd) {
}

std::error_code members_table::apply(model::offset o, remove_node_cmd cmd) {
vlog(
clusterlog.info, "applying remove node config command for: {}", cmd.key);
vlog(clusterlog.info, "applying remove node command for: {}", cmd.key);
_version = model::revision_id(o);
auto it = _nodes.find(cmd.key);
if (it == _nodes.end()) {
Expand Down

0 comments on commit e1da545

Please sign in to comment.