Skip to content

Commit 4c20b45

Browse files
authored
allocation: fix typo in balancing round interval setting (#136342) (#136347)
The AllocationBalancingRoundSummaryService has an interval setting, balancer_round_summaries_interval, that was previously named with a typo (balanace). This 2 character change fixes this typo.
1 parent fe21d31 commit 4c20b45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/src/main/java/org/elasticsearch/cluster/routing/allocation/allocator/AllocationBalancingRoundSummaryService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public class AllocationBalancingRoundSummaryService {
4747

4848
/** Controls how frequently in time balancer round summaries are logged. */
4949
public static final Setting<TimeValue> BALANCER_ROUND_SUMMARIES_LOG_INTERVAL_SETTING = Setting.timeSetting(
50-
"cluster.routing.allocation.desired_balance.balanace_round_summaries_interval",
50+
"cluster.routing.allocation.desired_balance.balancer_round_summaries_interval",
5151
TimeValue.timeValueSeconds(10),
5252
TimeValue.ZERO,
5353
Setting.Property.NodeScope,

0 commit comments

Comments
 (0)