MCPcopy Index your code
hub / github.com/codeaashu/claude-code / isPersistentRetryEnabled

Function isPersistentRetryEnabled

src/services/api/withRetry.ts:100–104  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

98const HEARTBEAT_INTERVAL_MS = 30_000
99
100function isPersistentRetryEnabled(): boolean {
101 return feature('UNATTENDED_RETRY')
102 ? isEnvTruthy(process.env.CLAUDE_CODE_UNATTENDED_RETRY)
103 : false
104}
105
106function isTransientCapacityError(error: unknown): boolean {
107 return (

Callers 2

withRetryFunction · 0.85
shouldRetryFunction · 0.85

Calls 2

featureFunction · 0.85
isEnvTruthyFunction · 0.85

Tested by

no test coverage detected