Merge pull request #44306 from ClickHouse/another-fix-for-test-server-reload

Another fix `test_server_reload`
This commit is contained in:
Antonio Andelic 2022-12-19 09:14:03 +01:00 committed by GitHub
commit 0162632275
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -150,7 +150,7 @@ def configure_from_zk(zk, querier=None):
zk.create(path=path, value=value, makepath=True)
has_changed = True
except NodeExistsError:
if zk.get(path) != value:
if zk.get(path)[0] != value:
zk.set(path=path, value=value)
has_changed = True
if has_changed and querier is not None: