Merge pull request #68552 from ClickHouse/tests-increase-hung-check-timeout

Stateless tests: increase hung check timeout
This commit is contained in:
Nikita Fomichev 2024-08-19 15:28:13 +00:00 committed by GitHub
commit c40306d3ee
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2572,12 +2572,12 @@ def do_run_tests(jobs, test_suite: TestSuite):
try: try:
clickhouse_execute( clickhouse_execute(
args, args,
query="SELECT 1 /*hang up check*/", query="SELECT 1 /*hung check*/",
max_http_retries=5, max_http_retries=20,
timeout=20, timeout=10,
) )
except Exception: except Exception:
print("Hang up check failed") print("Hung check failed")
server_died.set() server_died.set()
if server_died.is_set(): if server_died.is_set():