@@ -18,6 +18,8 @@ std::unique_ptr<NActors::IEventBase> TRepliesAdapter::RebuildReplyEvent(std::uni
1818 AFL_VERIFY (!!ev->Body )(" key" , ev->Key )(" interval_from" , ev->GetReadInterval ().first )(" interval_to" , ev->GetReadInterval ().second );
1919 return std::make_unique<NBlobCache::TEvBlobCache::TEvReadBlobRangeResult>(bRange, NKikimrProto::EReplyStatus::OK, ev->Body , false , StorageId);
2020 } 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);
2123 return std::make_unique<NBlobCache::TEvBlobCache::TEvReadBlobRangeResult>(bRange, NKikimrProto::EReplyStatus::ERROR, TStringBuilder () << ev->Result , false , StorageId);
2224 }
2325}
@@ -30,6 +32,8 @@ std::unique_ptr<NActors::IEventBase> TRepliesAdapter::RebuildReplyEvent(std::uni
3032 if (ev->IsSuccess ()) {
3133 return std::make_unique<TEvBlobStorage::TEvPutResult>(NKikimrProto::EReplyStatus::OK, logoBlobId, 0 , TGroupId::FromValue (Max<ui32>()), 0 , StorageId);
3234 } 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);
3337 return std::make_unique<TEvBlobStorage::TEvPutResult>(NKikimrProto::EReplyStatus::ERROR, logoBlobId, 0 , TGroupId::FromValue (Max<ui32>()), 0 , StorageId);
3438 }
3539}
0 commit comments