Merge pull request #53173 from ClickHouse/warn

Fix warning in test_replicated_database
This commit is contained in:
Alexey Milovidov 2023-08-12 03:19:25 +03:00 committed by GitHub
commit e269fc1b4b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1226,7 +1226,7 @@ def test_force_synchronous_settings(started_cluster):
def select_func():
dummy_node.query(
"SELECT sleepEachRow(1) FROM test_force_synchronous_settings.t"
"SELECT sleepEachRow(1) FROM test_force_synchronous_settings.t SETTINGS function_sleep_max_microseconds_per_block = 0"
)
select_thread = threading.Thread(target=select_func)