Skip to content

Commit 5456cf1

Browse files
authored
Fix uninitialized value in BSC (#15498)
1 parent 8e0d191 commit 5456cf1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ydb/core/mind/bscontroller/bsc.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ void TBlobStorageController::ApplyStorageConfig(bool ignoreDistconf) {
302302
return; // not expected to be managed by BSC
303303
}
304304

305-
ui64 expectedBoxId;
305+
ui64 expectedBoxId = 1;
306306
std::optional<ui64> generation;
307307
bool needToDefineBox = true;
308308
if (!Boxes.empty()) {

0 commit comments

Comments
 (0)