Function
shouldRetry529
(querySource: QuerySource | undefined)
Source from the content-addressed store, hash-verified
| 82 | ]) |
| 83 | |
| 84 | function shouldRetry529(querySource: QuerySource | undefined): boolean { |
| 85 | // undefined → retry (conservative for untagged call paths) |
| 86 | return ( |
| 87 | querySource === undefined || FOREGROUND_529_RETRY_SOURCES.has(querySource) |
| 88 | ) |
| 89 | } |
| 90 | |
| 91 | // CLAUDE_CODE_UNATTENDED_RETRY: for unattended sessions (ant-only). Retries 429/529 |
| 92 | // indefinitely with higher backoff and periodic keep-alive yields so the host |
Tested by
no test coverage detected