Automatic style fix

This commit is contained in:
robot-clickhouse 2023-06-28 11:33:45 +00:00
parent 06206d092d
commit 5443987113

View File

@ -323,7 +323,7 @@ def test_concurrent_queries(started_cluster):
)
)
print(count)
assert count <= 18 # 16 for test.test_table + 1 for conn + 1 for test.stat
assert count <= 18 # 16 for test.test_table + 1 for conn + 1 for test.stat
busy_pool = Pool(30)
p = busy_pool.map_async(node_insert, range(30))
@ -335,7 +335,7 @@ def test_concurrent_queries(started_cluster):
)
)
print(count)
assert count <= 19 # 16 for test.test_table + 1 for conn + at most 2 for test.stat
assert count <= 19 # 16 for test.test_table + 1 for conn + at most 2 for test.stat
busy_pool = Pool(30)
p = busy_pool.map_async(node_insert_select, range(30))
@ -347,7 +347,7 @@ def test_concurrent_queries(started_cluster):
)
)
print(count)
assert count <= 20 # 16 for test.test_table + 1 for conn + at most 3 for test.stat
assert count <= 20 # 16 for test.test_table + 1 for conn + at most 3 for test.stat
node1.query("DROP TABLE test.test_table;")
node1.query("DROP TABLE test.stat;")