From 3246261da8a3152bc0ecf0c8855120454d76877f Mon Sep 17 00:00:00 2001 From: tavplubix Date: Tue, 29 Mar 2022 15:43:42 +0300 Subject: [PATCH] Fix logging in `test_distributed_respect_user_timeouts` (#35575) * Update test.py * Update test.py * Update test.py Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> --- .../integration/test_distributed_respect_user_timeouts/test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/test_distributed_respect_user_timeouts/test.py b/tests/integration/test_distributed_respect_user_timeouts/test.py index 9cf7082d63a..567377aba0b 100644 --- a/tests/integration/test_distributed_respect_user_timeouts/test.py +++ b/tests/integration/test_distributed_respect_user_timeouts/test.py @@ -94,7 +94,7 @@ def _check_exception(exception, expected_tries=3): @pytest.fixture(scope="module", params=["configs", "configs_secure"]) def started_cluster(request): - cluster = ClickHouseCluster(__file__) + cluster = ClickHouseCluster(__file__, request.param) cluster.__with_ssl_config = request.param == "configs_secure" main_configs = [] main_configs += [os.path.join(request.param, "config.d/remote_servers.xml")]