mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-18 20:32:43 +00:00
Fix tidy
This commit is contained in:
parent
f3c88ff667
commit
ca9bf2c67c
@ -136,7 +136,7 @@ void ZooKeeper::init(ZooKeeperArgs args_, std::unique_ptr<Coordination::IKeeper>
|
|||||||
LOG_TRACE(log, "Initialized, hosts: {}, chroot: {}", fmt::join(args.hosts, ","), args.chroot);
|
LOG_TRACE(log, "Initialized, hosts: {}, chroot: {}", fmt::join(args.hosts, ","), args.chroot);
|
||||||
|
|
||||||
/// If the balancing strategy has an optimal node then it will be the first in the list
|
/// If the balancing strategy has an optimal node then it will be the first in the list
|
||||||
bool connected_to_suboptimal_node = node_idx && *node_idx != shuffled_hosts[0].original_index;
|
bool connected_to_suboptimal_node = node_idx && static_cast<UInt8>(*node_idx) != shuffled_hosts[0].original_index;
|
||||||
bool respect_az = args.prefer_local_availability_zone && !args.client_availability_zone.empty();
|
bool respect_az = args.prefer_local_availability_zone && !args.client_availability_zone.empty();
|
||||||
bool may_benefit_from_reconnecting = respect_az || args.get_priority_load_balancing.hasOptimalNode();
|
bool may_benefit_from_reconnecting = respect_az || args.get_priority_load_balancing.hasOptimalNode();
|
||||||
if (connected_to_suboptimal_node && may_benefit_from_reconnecting)
|
if (connected_to_suboptimal_node && may_benefit_from_reconnecting)
|
||||||
|
Loading…
Reference in New Issue
Block a user