Fix integration test test_total_max_threads

This commit is contained in:
Roman Vasin 2022-07-27 14:34:10 +00:00
parent 50e695da03
commit 8a3125f2d2

View File

@ -59,7 +59,7 @@ def test_total_max_threads_defined_50(started_cluster):
node2.query(
"select length(thread_ids) from system.query_log where current_database = currentDatabase() and type = 'QueryFinish' and query_id = 'test_total_max_threads_2'"
)
== "51\n"
== "52\n"
)
@ -72,7 +72,7 @@ def test_total_max_threads_defined_1(started_cluster):
node3.query(
"select length(thread_ids) from system.query_log where current_database = currentDatabase() and type = 'QueryFinish' and query_id = 'test_total_max_threads_3'"
)
== "2\n"
== "3\n"
)