From 017da21658434170d00a093fa5b5a7a713fa186e Mon Sep 17 00:00:00 2001 From: Andy Fiddaman Date: Mon, 26 Feb 2024 12:05:28 +0000 Subject: [PATCH] typo --- test-utils/src/dev/clickhouse.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test-utils/src/dev/clickhouse.rs b/test-utils/src/dev/clickhouse.rs index 59e9f18097..8f9391efc8 100644 --- a/test-utils/src/dev/clickhouse.rs +++ b/test-utils/src/dev/clickhouse.rs @@ -29,11 +29,11 @@ const CLICKHOUSE_TIMEOUT: Duration = Duration::from_secs(30); // Timeout used when starting a ClickHouse keeper subprocess. const CLICKHOUSE_KEEPER_TIMEOUT: Duration = Duration::from_secs(30); -// The string to look for in a keeper log file that indiccates that the server +// The string to look for in a keeper log file that indicates that the server // is ready. const KEEPER_READY: &'static str = "Server initialized, waiting for quorum"; -// The string to look for in a clickhouse log file that indiccates that the +// The string to look for in a clickhouse log file that indicates that the // server is ready. const CLICKHOUSE_READY: &'static str = " Application: Ready for connections";