We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f6e1bc commit fd66cafCopy full SHA for fd66caf
ydb/core/blob_depot/agent/read.cpp
@@ -187,7 +187,8 @@ namespace NKikimr::NBlobDepot {
187
readContext.BlobWithoutData = blob.Id;
188
return;
189
} else if (blob.Status != NKikimrProto::OK) {
190
- 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
191
+ << " Status# " << blob.Status << " ErrorReason# '" << msg.ErrorReason << "'");
192
}
193
194
const ui64 offset = partContext.Offsets[i];
0 commit comments