Skip to content

Commit

Permalink
admin_server: more logging in get_partition_balancer_status
Browse files Browse the repository at this point in the history
  • Loading branch information
ztlpn committed Aug 14, 2022
1 parent 220c958 commit a8f56b5
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/v/redpanda/admin_server.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2851,6 +2851,10 @@ void admin_server::register_cluster_routes() {
std::get<cluster::partition_balancer_overview_reply>(result));
} else if (std::holds_alternative<model::node_id>(result)) {
auto node_id = std::get<model::node_id>(result);
vlog(
logger.debug,
"proxying the partition_balancer_overview call to node {}",
node_id);
auto rpc_result
= co_await _connection_cache.local()
.with_node_client<
Expand Down

0 comments on commit a8f56b5

Please sign in to comment.