(ms: number)
| 1617 | } |
| 1618 | |
| 1619 | function formatDelay(ms: number): string { |
| 1620 | return ms >= 1000 ? `${(ms / 1000).toFixed(1)}s` : `${Math.round(ms)}ms` |
| 1621 | } |
| 1622 | |
| 1623 | /** |
| 1624 | * Retry stopWork with exponential backoff (3 attempts, 1s/2s/4s). |
no outgoing calls
no test coverage detected