Skip to content

Commit

Permalink
Merge 38c5f0b into da209ec
Browse files Browse the repository at this point in the history
  • Loading branch information
GrigoriyPA authored May 16, 2024
2 parents da209ec + 38c5f0b commit 91b910e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ydb/core/fq/libs/compute/ydb/resources_cleaner_actor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ class TResourcesCleanerActor : public TBaseComputeActor<TResourcesCleanerActor>

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

0 comments on commit 91b910e

Please sign in to comment.