Randomize correctly

This commit is contained in:
Antonio Andelic 2024-11-19 13:39:54 +01:00
parent 459fa898ed
commit 57db5cf24c

View File

@ -2847,8 +2847,14 @@ class ClickHouseCluster:
indentation = 4 * " "
def get_feature_flag_value(feature_flag):
if not self.keeper_randomize_feature_flags:
return 1
if feature_flag in self.keeper_required_feature_flags:
return 1
return random.randint(0, 1)
with open(feature_flags_config, "w") as ff_config:
ff_config.write("keeper_server:\n")
ff_config.write(f"{indentation}feature_flags:\n")