Print stacktraces if test queue is full

This commit is contained in:
Dmitry Novik 2022-06-30 22:33:56 +00:00
parent 1f8c33be3f
commit 7378f0e30f

View File

@ -1594,6 +1594,8 @@ def do_run_tests(jobs, test_suite: TestSuite, parallel):
queue.close()
except Full:
print("Couldn't put test to the queue within timeout. Server probably hung.")
print_stacktraces()
queue.close()
pool.join()