From 239a13ef9a8fcd771a8f2ba83f57420472e0b991 Mon Sep 17 00:00:00 2001 From: JackyWoo Date: Thu, 28 Oct 2021 18:27:36 +0800 Subject: [PATCH] fix clang13 build error --- src/Coordination/KeeperDispatcher.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Coordination/KeeperDispatcher.cpp b/src/Coordination/KeeperDispatcher.cpp index e34693e2821..ad117f216f1 100644 --- a/src/Coordination/KeeperDispatcher.cpp +++ b/src/Coordination/KeeperDispatcher.cpp @@ -662,9 +662,9 @@ void KeeperDispatcher::updateConfiguration(const Poco::Util::AbstractConfigurati } } -void KeeperDispatcher::updateKeeperStat(UInt64 process_time_stopwatch) +void KeeperDispatcher::updateKeeperStat(UInt64 process_time_ms) { - keeper_stats->updateLatency(process_time_stopwatch); + keeper_stats->updateLatency(process_time_ms); } String KeeperDispatcher::getRole() const