Skip to content

Commit

Permalink
Fix small vdisk skeleton bug (#10260)
Browse files Browse the repository at this point in the history
  • Loading branch information
mregrock authored Oct 14, 2024
1 parent cb6adbd commit 1985ffc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ydb/core/blobstorage/vdisk/skeleton/blobstorage_skeleton.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -93,10 +93,10 @@ namespace NKikimr {
ctx.Send(NodeWardenServiceId,
new TEvBlobStorage::TEvControllerUpdateDiskStatus(
SelfVDiskId,
OverloadHandler ? OverloadHandler->GetIntegralRankPercent() : 0,
SelfId().NodeId(),
Config->BaseInfo.PDiskId,
Config->BaseInfo.VDiskSlotId));
Config->BaseInfo.VDiskSlotId,
OverloadHandler ? OverloadHandler->GetIntegralRankPercent() : 0));
// repeat later
ctx.Schedule(Config->WhiteboardUpdateInterval, new TEvTimeToUpdateWhiteboard());
}
Expand Down

0 comments on commit 1985ffc

Please sign in to comment.