mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 15:42:02 +00:00
Increased log waiting timeout
This commit is contained in:
parent
0e1728801e
commit
3de967ecbe
@ -96,7 +96,10 @@ def threaded_run_test(sessions):
|
|||||||
thread.start()
|
thread.start()
|
||||||
|
|
||||||
if len(sessions) > MAX_SESSIONS_FOR_USER:
|
if len(sessions) > MAX_SESSIONS_FOR_USER:
|
||||||
assert_logs_contain_with_retry(instance, "overflown session count")
|
# High retry amount to avoid flakiness in ASAN (+Analyzer) tests
|
||||||
|
assert_logs_contain_with_retry(
|
||||||
|
instance, "overflown session count", retry_count=60
|
||||||
|
)
|
||||||
|
|
||||||
instance.query(f"KILL QUERY WHERE user='{TEST_USER}' SYNC")
|
instance.query(f"KILL QUERY WHERE user='{TEST_USER}' SYNC")
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user