diff options
author | vporyadke <zalyalov@ydb.tech> | 2024-10-16 08:21:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-16 08:21:52 +0200 |
commit | cda64ac00ea6f489ea61f87373af6ccf9e080999 (patch) | |
tree | ca7a73e950308ac69723892f72614f429151a13f | |
parent | 743e0929eaa9b4d51d5ca0718a3716050f0bf4a5 (diff) | |
download | ydb-cda64ac00ea6f489ea61f87373af6ccf9e080999.tar.gz |
fix waiting followers in dev ui (#10257)
-rw-r--r-- | ydb/core/mind/hive/monitoring.cpp | 2 |
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}); } |