fix: continue VOE account fallback rotation
CI / verify (push) Canceled after 0s

This commit is contained in:
Sucukdeluxe
2026-09-07 02:44:08 +02:00
parent 0f5cb68308
commit c8838d34b3
5 changed files with 62 additions and 3 deletions
+1
View File
@@ -238,6 +238,7 @@ test('account failure classification cools down quota and rate-limit errors with
const quota = new Error('not enough disk space on your account');
quota.accountError = true;
assert.equal(classifyAccountFailure(quota), 'cooldown');
assert.equal(classifyAccountFailure(new Error('Maximum storage space of the account used up.')), 'cooldown');
assert.equal(classifyAccountFailure(new Error('HTTP 429 Too Many Requests')), 'cooldown');
const transient = new Error('HTTP 503 Service Unavailable');
transient.transientNetwork = true;