fix(core): treat 503 Service Unavailable as retryable quota error (#19642)

This commit is contained in:
Sehoon Shon
2026-02-20 14:51:53 -05:00
committed by GitHub
parent 239aa0909c
commit 723f269df6
3 changed files with 34 additions and 2 deletions
@@ -20,7 +20,8 @@ async function run(cmd) {
stdio: ['pipe', 'pipe', 'ignore'],
});
return stdout.trim();
} catch (_e) { // eslint-disable-line @typescript-eslint/no-unused-vars
} catch (_e) {
// eslint-disable-line @typescript-eslint/no-unused-vars
return null;
}
}