Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mattisonchao committed Nov 9, 2024
1 parent 57ab26d commit 945b635
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions coordinator/impl/cluster_rebalance.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,10 @@ outer:
}
if len(deletedServers) > 0 {
slog.Debug("Deleted servers: ")
for ds, context := range deletedServers {
for id, context := range deletedServers {
slog.Debug(
"",
slog.String("server", ds),
slog.String("server", id),
slog.Int("count", context.Shards.Count()),
)
}
Expand Down

0 comments on commit 945b635

Please sign in to comment.