Skip to content

Commit 79444a5

Browse files
doroolegydbot
authored andcommitted
verify has been fixed (#27033)
1 parent ba3d83d commit 79444a5

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)