Skip to content

Commit

Permalink
fix waiting followers in dev ui (ydb-platform#10257)
Browse files Browse the repository at this point in the history
  • Loading branch information
vporyadke authored Oct 16, 2024
1 parent 743e092 commit cda64ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ydb/core/mind/hive/monitoring.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ class TTxMonEvent_MemStateTablets : public TTransactionBase<THive> {
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});
}
Expand Down

0 comments on commit cda64ac

Please sign in to comment.