mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-26 01:22:04 +00:00
Merge pull request #11321 from ClickHouse/better-hung-check
Better check for hung queries in clickhouse-test
This commit is contained in:
commit
59c9e030b4
@ -502,7 +502,14 @@ def main(args):
|
|||||||
total_tests_run += tests_n
|
total_tests_run += tests_n
|
||||||
|
|
||||||
if args.hung_check:
|
if args.hung_check:
|
||||||
|
|
||||||
|
# Some queries may execute in background for some time after test was finished. This is normal.
|
||||||
|
for n in range(1, 60):
|
||||||
processlist = get_processlist(args.client)
|
processlist = get_processlist(args.client)
|
||||||
|
if not processlist:
|
||||||
|
break
|
||||||
|
sleep(1)
|
||||||
|
|
||||||
if processlist:
|
if processlist:
|
||||||
print(colored("\nFound hung queries in processlist:", args, "red", attrs=["bold"]))
|
print(colored("\nFound hung queries in processlist:", args, "red", attrs=["bold"]))
|
||||||
print(processlist)
|
print(processlist)
|
||||||
|
Loading…
Reference in New Issue
Block a user