Merge pull request #45156 from qoega/green-ci-5

Fix flaky test_tcp_handler_interserver_listen_host
This commit is contained in:
Ilya Yatsishin 2023-01-11 19:09:22 +01:00 committed by GitHub
commit cc352804df
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,6 +29,12 @@ node_without_interserver_listen_host = cluster.add_instance(
def start_cluster():
try:
cluster.start()
cluster.wait_for_url(
f"http://{INTERSERVER_LISTEN_HOST}:{INTERSERVER_HTTP_PORT}"
)
cluster.wait_for_url(
f"http://{node_without_interserver_listen_host.ip_address}:8123"
)
yield cluster
finally: