Skip to content

Commit 01a3f58

Browse files
committed
Disable with_remote_database_disk in test_distributed_ddl and test_zookeeper_config
1 parent e870852 commit 01a3f58

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

tests/integration/test_distributed_ddl/cluster.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ def prepare(self, replace_hostnames_with_ips=True):
5050
user_configs=user_configs,
5151
macros={"layer": 0, "shard": i // 2 + 1, "replica": i % 2 + 1},
5252
with_zookeeper=True,
53+
with_remote_database_disk=False, # Disable `with_remote_database_disk` because Keeper might reject connections from the instance.
5354
)
5455

5556
self.start()

tests/integration/test_zookeeper_config/test_password.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,16 @@
1414
"configs/remote_servers.xml",
1515
"configs/zookeeper_config_with_password.xml",
1616
],
17+
# During the initialization, the instance cannot authenticate with Keeper, causing it to fail to start.
18+
with_remote_database_disk=False,
1719
)
1820

1921
node2 = cluster.add_instance(
20-
"node2", with_zookeeper=True, main_configs=["configs/remote_servers.xml"]
22+
"node2",
23+
with_zookeeper=True,
24+
main_configs=["configs/remote_servers.xml"],
25+
# During the initialization, the instance cannot authenticate with Keeper, causing it to fail to start.
26+
with_remote_database_disk=False,
2127
)
2228

2329

0 commit comments

Comments
 (0)