(client, message, variant = "info")
| 435 | if (error?.code === "ENOENT") |
| 436 | return { version: 4, jobs: [] }; |
| 437 | const transient = error instanceof SyntaxError || isRetriableStateWriteError(error); |
| 438 | if (!transient || attempt === attempts - 1) |
| 439 | break; |
| 440 | await delay(25 * (attempt + 1)); |
| 441 | } |
| 442 | } |
no test coverage detected