mirror of
https://github.com/claude-code-best/claude-code.git
synced 2026-06-17 22:05:50 +00:00
style: 完成所有文件的lint
This commit is contained in:
@@ -223,10 +223,7 @@ async function tryWithVersionLock(
|
||||
attempts++
|
||||
if (attempts < maxAttempts) {
|
||||
// Wait before retrying with exponential backoff
|
||||
const timeout = Math.min(
|
||||
minTimeout * 2 ** (attempts - 1),
|
||||
maxTimeout,
|
||||
)
|
||||
const timeout = Math.min(minTimeout * 2 ** (attempts - 1), maxTimeout)
|
||||
await sleep(timeout)
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user