Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion ydb/core/blob_depot/agent/read.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,8 @@ namespace NKikimr::NBlobDepot {
readContext.BlobWithoutData = blob.Id;
return;
} else if (blob.Status != NKikimrProto::OK) {
return readContext.EndWithError(this, blob.Status, TStringBuilder() << "failed to read BlobId# " << blob.Id);
return readContext.EndWithError(this, blob.Status, TStringBuilder() << "failed to read BlobId# " << blob.Id
<< " Status# " << blob.Status << " ErrorReason# '" << msg.ErrorReason << "'");
}

const ui64 offset = partContext.Offsets[i];
Expand Down