From b7ed729c81f904b70a7d71c8498d3bead4b823e3 Mon Sep 17 00:00:00 2001 From: alesapin Date: Tue, 26 Oct 2021 11:29:22 +0300 Subject: [PATCH] typo --- tests/integration/helpers/cluster.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/integration/helpers/cluster.py b/tests/integration/helpers/cluster.py index c7b140b6471..9d7657d3a83 100644 --- a/tests/integration/helpers/cluster.py +++ b/tests/integration/helpers/cluster.py @@ -2066,7 +2066,7 @@ class ClickHouseInstance: for i in range(start_tries): # sometimes after SIGKILL (hard reset) server may refuse to start for some time - # for different reasons + # for different reasons. self.exec_in_container(["bash", "-c", "{} --daemon".format(self.clickhouse_start_command)], user=str(os.getuid())) started = False for _ in range(query_tries): @@ -2079,7 +2079,7 @@ class ClickHouseInstance: if started: break else: - raise Exception("Cannot start ClickHouse, se additional info in logs") + raise Exception("Cannot start ClickHouse, see additional info in logs") def restart_clickhouse(self, stop_start_wait_sec=30, kill=False):