(ms: number)
| 1634 | } |
| 1635 | |
| 1636 | function formatDelay(ms: number): string { |
| 1637 | return ms >= 1000 ? `${(ms / 1000).toFixed(1)}s` : `${Math.round(ms)}ms` |
| 1638 | } |
| 1639 | |
| 1640 | /** |
| 1641 | * Retry stopWork with exponential backoff (3 attempts, 1s/2s/4s). |
no outgoing calls
no test coverage detected