Skip to content

Commit a2cd6e3

Browse files
authored
Fix uninitialized value in BSC (merge from main #15498) (#15508)
1 parent 98891de commit a2cd6e3

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
@@ -281,7 +281,7 @@ void TBlobStorageController::ApplyStorageConfig(bool ignoreDistconf) {
281281
return; // not expected to be managed by BSC
282282
}
283283

284-
ui64 expectedBoxId;
284+
ui64 expectedBoxId = 1;
285285
std::optional<ui64> generation;
286286
bool needToDefineBox = true;
287287
if (!Boxes.empty()) {

0 commit comments

Comments
 (0)