Merge pull request #60426 from Avogar/fix_test_reload_clusters_config

Improve test test_reload_clusters_config
This commit is contained in:
Alexey Milovidov 2024-03-03 19:07:01 +03:00 committed by GitHub
commit 37e6892f52
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -13,8 +13,6 @@ cluster = ClickHouseCluster(__file__)
node = cluster.add_instance(
"node", with_zookeeper=True, main_configs=["configs/remote_servers.xml"]
)
node_1 = cluster.add_instance("node_1", with_zookeeper=True)
node_2 = cluster.add_instance("node_2", with_zookeeper=True)
@pytest.fixture(scope="module")
@ -32,9 +30,6 @@ def started_cluster():
Distributed('test_cluster2', 'default', 'replicated')"""
)
cluster.pause_container("node_1")
cluster.pause_container("node_2")
yield cluster
finally: