Skip to content

Commit 44ae19d

Browse files
authored
Fix uninitialized generation (#17351)
1 parent 1661faa commit 44ae19d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ydb/core/blobstorage/dsproxy/dsproxy_get_block.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ namespace NKikimr {
1111

1212
class TBlobStorageGroupGetBlockRequest : public TBlobStorageGroupRequestActor {
1313
const ui64 TabletId;
14-
ui64 Generation;
14+
ui64 Generation = 0;
1515
const TInstant Deadline;
1616
ui64 Requests = 0;
1717
ui64 Responses = 0;

0 commit comments

Comments
 (0)