aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorvporyadke <zalyalov@ydb.tech>2024-10-16 08:21:52 +0200
committerGitHub <noreply@github.com>2024-10-16 08:21:52 +0200
commitcda64ac00ea6f489ea61f87373af6ccf9e080999 (patch)
treeca7a73e950308ac69723892f72614f429151a13f
parent743e0929eaa9b4d51d5ca0718a3716050f0bf4a5 (diff)
downloadydb-cda64ac00ea6f489ea61f87373af6ccf9e080999.tar.gz
fix waiting followers in dev ui (#10257)
-rw-r--r--ydb/core/mind/hive/monitoring.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/core/mind/hive/monitoring.cpp b/ydb/core/mind/hive/monitoring.cpp
index 844296588e..4e06e7cfc2 100644
--- a/ydb/core/mind/hive/monitoring.cpp
+++ b/ydb/core/mind/hive/monitoring.cpp
@@ -246,7 +246,7 @@ public:
if (WaitingOnly) {
tabletIdIndex.reserve(Self->BootQueue.WaitQueue.size());
for (const TBootQueue::TBootQueueRecord& rec : Self->BootQueue.WaitQueue) {
- TTabletInfo* tablet = Self->FindTablet(rec.TabletId);
+ TTabletInfo* tablet = Self->FindTablet(rec.TabletId, rec.FollowerId);
if (tablet != nullptr) {
tabletIdIndex.push_back({tabletIndexFunction(*tablet), tablet});
}