We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4364805 commit ea66216Copy full SHA for ea66216
ydb/core/blobstorage/vdisk/hullop/blobstorage_hullcompact.h
@@ -164,7 +164,7 @@ namespace NKikimr {
164
if (msg->Type() == TEvBlobStorage::EvChunkWrite) {
165
auto *write = static_cast<NPDisk::TEvChunkWrite*>(msg.get());
166
return write->PartsPtr ? write->PartsPtr->ByteSize() : 0;
167
- } else {
+ } else if (msg->Type() == TEvBlobStorage::EvChunkRead) {
168
auto *read = static_cast<NPDisk::TEvChunkRead*>(msg.get());
169
return read->Size;
170
}
0 commit comments