Skip to content

Commit 1985ffc

Browse files
authored
Fix small vdisk skeleton bug (#10260)
1 parent cb6adbd commit 1985ffc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ydb/core/blobstorage/vdisk/skeleton/blobstorage_skeleton.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,10 +93,10 @@ namespace NKikimr {
9393
ctx.Send(NodeWardenServiceId,
9494
new TEvBlobStorage::TEvControllerUpdateDiskStatus(
9595
SelfVDiskId,
96-
OverloadHandler ? OverloadHandler->GetIntegralRankPercent() : 0,
9796
SelfId().NodeId(),
9897
Config->BaseInfo.PDiskId,
99-
Config->BaseInfo.VDiskSlotId));
98+
Config->BaseInfo.VDiskSlotId,
99+
OverloadHandler ? OverloadHandler->GetIntegralRankPercent() : 0));
100100
// repeat later
101101
ctx.Schedule(Config->WhiteboardUpdateInterval, new TEvTimeToUpdateWhiteboard());
102102
}

0 commit comments

Comments
 (0)