@@ -18,6 +18,8 @@ std::unique_ptr<NActors::IEventBase> TRepliesAdapter::RebuildReplyEvent(std::uni
18
18
AFL_VERIFY (!!ev->Body )(" key" , ev->Key )(" interval_from" , ev->GetReadInterval ().first )(" interval_to" , ev->GetReadInterval ().second );
19
19
return std::make_unique<NBlobCache::TEvBlobCache::TEvReadBlobRangeResult>(bRange, NKikimrProto::EReplyStatus::OK, ev->Body , false , StorageId);
20
20
} else {
21
+ AFL_DEBUG (NKikimrServices::TX_TIERING)(" event" , " s3_request_failed" )(" request_type" , " get_object" )(
22
+ " exception" , ev->GetError ().GetExceptionName ())(" message" , ev->GetError ().GetMessage ())(" storage_id" , StorageId)(" blob" , logoBlobId);
21
23
return std::make_unique<NBlobCache::TEvBlobCache::TEvReadBlobRangeResult>(bRange, NKikimrProto::EReplyStatus::ERROR, TStringBuilder () << ev->Result , false , StorageId);
22
24
}
23
25
}
@@ -30,6 +32,8 @@ std::unique_ptr<NActors::IEventBase> TRepliesAdapter::RebuildReplyEvent(std::uni
30
32
if (ev->IsSuccess ()) {
31
33
return std::make_unique<TEvBlobStorage::TEvPutResult>(NKikimrProto::EReplyStatus::OK, logoBlobId, 0 , TGroupId::FromValue (Max<ui32>()), 0 , StorageId);
32
34
} else {
35
+ AFL_DEBUG (NKikimrServices::TX_TIERING)(" event" , " s3_request_failed" )(" request_type" , " put_object" )(
36
+ " exception" , ev->GetError ().GetExceptionName ())(" message" , ev->GetError ().GetMessage ())(" storage_id" , StorageId)(" blob" , logoBlobId);
33
37
return std::make_unique<TEvBlobStorage::TEvPutResult>(NKikimrProto::EReplyStatus::ERROR, logoBlobId, 0 , TGroupId::FromValue (Max<ui32>()), 0 , StorageId);
34
38
}
35
39
}
0 commit comments