From 61ce7748f132e5b2e54d1fa024cf404f8881bae4 Mon Sep 17 00:00:00 2001 From: vporyadke Date: Fri, 17 May 2024 11:10:56 +0200 Subject: [PATCH] fix LastAnyUpdate (#4621) --- ydb/core/tablet/tablet_metrics.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/ydb/core/tablet/tablet_metrics.cpp b/ydb/core/tablet/tablet_metrics.cpp index e2b0b80ac17a..7ec73545923e 100644 --- a/ydb/core/tablet/tablet_metrics.cpp +++ b/ydb/core/tablet/tablet_metrics.cpp @@ -276,6 +276,7 @@ bool TResourceMetricsSendState::TryUpdate(TResourceMetricsValues& src, const TAc if (force) { LastAllUpdate = now; } + LastAnyUpdate = now; ctx.Send(Launcher, new TEvLocal::TEvTabletMetrics(TabletId, FollowerId, values)); } return updated;