Skip to content

Commit

Permalink
cluster: fix leader balancer error log
Browse files Browse the repository at this point in the history
This was outputting number, should have been
outputting message.
  • Loading branch information
jcsp committed Aug 8, 2022
1 parent 212d3ba commit 8787da4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/v/cluster/scheduling/leader_balancer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -755,7 +755,7 @@ ss::future<bool> leader_balancer::do_transfer_remote(reassignment transfer) {
clusterlog.info,
"Leadership transfer of group {} failed with error: {}",
transfer.group,
raft::make_error_code(res.value().result));
raft::make_error_code(res.value().result).message());

co_return false;
}
Expand Down

0 comments on commit 8787da4

Please sign in to comment.