Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
robdrynkin committed Sep 26, 2024
1 parent f28c72c commit 76200a3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class TVDiskResponder : public TActor<TVDiskResponder> {

void Handle(TEvBlobStorage::TEvVStatus::TPtr ev) {
Send(ev->Sender, new TEvBlobStorage::TEvVStatusResult(NKikimrProto::OK,
VDiskIDFromVDiskID(ev->Get()->Record.GetVDiskID()), true, true, 1));
VDiskIDFromVDiskID(ev->Get()->Record.GetVDiskID()), true, true, false, 1));
}

STRICT_STFUNC(StateFunc,
Expand Down
2 changes: 1 addition & 1 deletion ydb/core/mind/bscontroller/ut_selfheal/vdisk_mock.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class TVDisk : TNonCopyable {

void Handle(TEvBlobStorage::TEvVStatus::TPtr ev) {
Send(ev->Sender, new TEvBlobStorage::TEvVStatusResult(NKikimrProto::OK, Self.VDiskId,
Self.Status >= NKikimrBlobStorage::REPLICATING, Self.Status >= NKikimrBlobStorage::READY, 0));
Self.Status >= NKikimrBlobStorage::REPLICATING, Self.Status >= NKikimrBlobStorage::READY, false, 0));
}

STRICT_STFUNC(StateFunc, {
Expand Down

0 comments on commit 76200a3

Please sign in to comment.