Skip to content

Commit b356229

Browse files
authored
stable-25-1-4: verify has been fixed (#27054)
2 parents ba3d83d + 79444a5 commit b356229

File tree

1 file changed

+2
-1
lines changed
  • ydb/core/tx/columnshard/blobs_reader

1 file changed

+2
-1
lines changed

ydb/core/tx/columnshard/blobs_reader/task.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,8 @@ class TCompositeReadBlobs {
135135
TCompositeReadBlobs() = default;
136136

137137
~TCompositeReadBlobs() {
138-
AFL_VERIFY(IsEmpty());
138+
// A non-empty value is possible here in case of destruction at start.
139+
// AFL_VERIFY(IsEmpty());
139140
}
140141

141142
TCompositeReadBlobs& operator=(TCompositeReadBlobs&& item) noexcept {

0 commit comments

Comments
 (0)