Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
SammyVimes committed May 30, 2024
1 parent 17e9397 commit 9ba9abb
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions ydb/core/blobstorage/pdisk/blobstorage_pdisk_ut.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -518,7 +518,6 @@ Y_UNIT_TEST_SUITE(TPDiskTest) {
new NPDisk::TEvYardInit(2, vDiskID, testCtx.TestCtx.PDiskGuid),
NKikimrProto::OK);

//ui32 errors = 0;
ui32 lsn = 2;
TRcBuf logData = TRcBuf(PrepareData(4096));

Expand All @@ -528,6 +527,10 @@ Y_UNIT_TEST_SUITE(TPDiskTest) {
if (i == 100) {
testCtx.GracefulPDiskRestart(false);
}
if (i == 600) {
const auto evInitRes = testCtx.Recv<TEvBlobStorage::TEvNotifyWardenPDiskRestarted>();
UNIT_ASSERT_VALUES_EQUAL(NKikimrProto::EReplyStatus::OK, evInitRes->Status);
}
++lsn;
}

Expand All @@ -540,7 +543,6 @@ Y_UNIT_TEST_SUITE(TPDiskTest) {
Ctest << "TEvLogResult status is error" << Endl;
}
}
testCtx.Recv<TEvBlobStorage::TEvNotifyWardenPDiskRestarted>();
}

Y_UNIT_TEST(CommitDeleteChunks) {
Expand Down

0 comments on commit 9ba9abb

Please sign in to comment.