()
| 102 | const HEARTBEAT_INTERVAL_MS = 30_000 |
| 103 | |
| 104 | function isPersistentRetryEnabled(): boolean { |
| 105 | return feature('UNATTENDED_RETRY') |
| 106 | ? isEnvTruthy(process.env.CLAUDE_CODE_UNATTENDED_RETRY) |
| 107 | : false |
| 108 | } |
| 109 | |
| 110 | function isTransientCapacityError(error: unknown): boolean { |
| 111 | return ( |
no test coverage detected