We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents da209ec + 38c5f0b commit 91b910eCopy full SHA for 91b910e
ydb/core/fq/libs/compute/ydb/resources_cleaner_actor.cpp
@@ -87,7 +87,7 @@ class TResourcesCleanerActor : public TBaseComputeActor<TResourcesCleanerActor>
87
88
void Handle(const TEvYdbCompute::TEvForgetOperationResponse::TPtr& ev) {
89
const auto& response = *ev.Get()->Get();
90
- 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) {
91
LOG_I("Operation partly forgotten, will be retried: " << response.Status);
92
SendForgetOperation(TDuration::MilliSeconds(BackoffTimer.NextBackoffMs()));
93
return;
0 commit comments