Skip to content

Commit 38c5f0b

Browse files
committed
Added retry on tli
1 parent e884754 commit 38c5f0b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ydb/core/fq/libs/compute/ydb/resources_cleaner_actor.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ class TResourcesCleanerActor : public TBaseComputeActor<TResourcesCleanerActor>
8787

8888
void Handle(const TEvYdbCompute::TEvForgetOperationResponse::TPtr& ev) {
8989
const auto& response = *ev.Get()->Get();
90-
if (response.Status == NYdb::EStatus::TIMEOUT || response.Status == NYdb::EStatus::CLIENT_DEADLINE_EXCEEDED) {
90+
if (response.Status == NYdb::EStatus::TIMEOUT || response.Status == NYdb::EStatus::CLIENT_DEADLINE_EXCEEDED || response.Status == NYdb::EStatus::ABORTED) {
9191
LOG_I("Operation partly forgotten, will be retried: " << response.Status);
9292
SendForgetOperation(TDuration::MilliSeconds(BackoffTimer.NextBackoffMs()));
9393
return;

0 commit comments

Comments
 (0)