From a8284109930439bdd5ce9ecd62d427c4b42d740c Mon Sep 17 00:00:00 2001 From: Antonio Andelic Date: Wed, 15 Nov 2023 12:14:48 +0000 Subject: [PATCH] Fix randomization of Keeper configs in stress tests --- docker/test/stateless/stress_tests.lib | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docker/test/stateless/stress_tests.lib b/docker/test/stateless/stress_tests.lib index fc35bff5e40..edcf2bc7bee 100644 --- a/docker/test/stateless/stress_tests.lib +++ b/docker/test/stateless/stress_tests.lib @@ -63,16 +63,16 @@ function configure() if [[ -n "$RANDOMIZE_KEEPER_FEATURE_FLAGS" ]] && [[ "$RANDOMIZE_KEEPER_FEATURE_FLAGS" -eq 1 ]]; then # Randomize all Keeper feature flags - randomize_config_boolean_value filtered_list keeper_port - randomize_config_boolean_value multi_read keeper_port - randomize_config_boolean_value check_not_exists keeper_port - randomize_config_boolean_value create_if_not_exists keeper_port + randomize_keeper_config_boolean_value filtered_list keeper_port + randomize_keeper_config_boolean_value multi_read keeper_port + randomize_keeper_config_boolean_value check_not_exists keeper_port + randomize_keeper_config_boolean_value create_if_not_exists keeper_port fi sudo chown clickhouse /etc/clickhouse-server/config.d/keeper_port.xml sudo chgrp clickhouse /etc/clickhouse-server/config.d/keeper_port.xml - randomize_config_boolean_value use_compression zookeeper + randomize_keeper_config_boolean_value use_compression zookeeper # for clickhouse-server (via service) echo "ASAN_OPTIONS='malloc_context_size=10 verbosity=1 allocator_release_to_os_interval_ms=10000'" >> /etc/environment