aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Rutkovsky <alexvru@ydb.tech>2024-11-21 20:28:36 +0300
committerGitHub <noreply@github.com>2024-11-21 20:28:36 +0300
commitb475488a0dd49a707628f8543e8b5a4c660c4375 (patch)
treea124de39a0c434f4ba1a279b9d7f2215a975a6ca
parent70eff8c9587c0aefdb2e7eae4b1399a7b617e38a (diff)
downloadydb-b475488a0dd49a707628f8543e8b5a4c660c4375.tar.gz
Fix blob recovery actor bug (#11857)
-rw-r--r--ydb/core/blobstorage/vdisk/scrub/blob_recovery_request.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/core/blobstorage/vdisk/scrub/blob_recovery_request.cpp b/ydb/core/blobstorage/vdisk/scrub/blob_recovery_request.cpp
index e86edcacbbb..ae2d3d22e35 100644
--- a/ydb/core/blobstorage/vdisk/scrub/blob_recovery_request.cpp
+++ b/ydb/core/blobstorage/vdisk/scrub/blob_recovery_request.cpp
@@ -44,8 +44,8 @@ namespace NKikimr {
if (item.Status == NKikimrProto::UNKNOWN) {
item.Status = NKikimrProto::DEADLINE;
}
- it->second->SendResult(SelfId());
}
+ it->second->SendResult(SelfId());
}
InFlight.erase(InFlight.begin(), it);