From 201523f4e6c193e521ae870ce5114c221c95b011 Mon Sep 17 00:00:00 2001 From: Maksim Kita Date: Mon, 11 Oct 2021 19:22:44 +0300 Subject: [PATCH] Fixed build --- src/Common/ZooKeeper/ZooKeeperImpl.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Common/ZooKeeper/ZooKeeperImpl.cpp b/src/Common/ZooKeeper/ZooKeeperImpl.cpp index aad423fcbd4..63b4a61b866 100644 --- a/src/Common/ZooKeeper/ZooKeeperImpl.cpp +++ b/src/Common/ZooKeeper/ZooKeeperImpl.cpp @@ -842,8 +842,8 @@ void ZooKeeper::finalize(bool error_send, bool error_receive, const String & rea /// If some thread (send/receive) already finalizing session don't try to do it bool already_started = finalization_started.exchange(true); - LOG_TEST(log, "Finalizing session {}: finalization_started={}, queue_closed={}, reason={}", - session_id, already_started, requests_queue.isClosed(), reason); + LOG_TEST(log, "Finalizing session {}: finalization_started={}, queue_finished={}, reason={}", + session_id, already_started, requests_queue.isFinished(), reason); if (already_started) return;