fix(delegate-task): recover aborted-operation messages in sync flows

This commit is contained in:
YeonGyu-Kim
2026-05-11 09:01:17 +09:00
parent 468bf25dcb
commit e018739d2c
4 changed files with 113 additions and 2 deletions
+4
View File
@@ -34,6 +34,10 @@ function shouldAttemptPollErrorRecovery(pollError: string): boolean {
return true
}
if (/^the operation was aborted\.?$/iu.test(trimmed)) {
return true
}
return false
}