better test

This commit is contained in:
Nikita Mikhaylov 2021-03-04 21:07:05 +03:00
parent 2c6fe0ea69
commit 9684fed32a

View File

@ -183,6 +183,9 @@ def test_secure_connection():
threads.append(threading.Thread(target=(lambda:
[node1.query("SELECT count() FROM system.zookeeper WHERE path = '/'") for _ in range(kIterations)])))
for thread in threads:
thread.start()
for thread in threads:
thread.join()