style: fix gofmt formatting in cooldown files

Remove extra spaces in comment alignment to pass fmt-check CI.
This commit is contained in:
Leandro Barbosa 2026-02-13 12:26:44 -03:00
parent 8a6fb7d9e3
commit 0f5b2f67bb
2 changed files with 3 additions and 3 deletions

View file

@ -196,8 +196,8 @@ func calculateStandardCooldown(errorCount int) time.Duration {
// 3 errors → 20 hours
// 4+ errors → 24 hours (cap)
func calculateBillingCooldown(billingErrorCount int) time.Duration {
const baseMs = 5 * 60 * 60 * 1000 // 5 hours
const maxMs = 24 * 60 * 60 * 1000 // 24 hours
const baseMs = 5 * 60 * 60 * 1000 // 5 hours
const maxMs = 24 * 60 * 60 * 1000 // 24 hours
n := max(1, billingErrorCount)
exp := min(n-1, 10)

View file

@ -184,7 +184,7 @@ func TestCooldown_BillingTakesPrecedence(t *testing.T) {
// Standard cooldown (1 min) + billing disable (5h)
ct.MarkFailure("openai", FailoverRateLimit) // 1 min cooldown
ct.MarkFailure("openai", FailoverBilling) // 5h disable
ct.MarkFailure("openai", FailoverBilling) // 5h disable
// After 2 min: standard cooldown expired but billing still active
*current = now.Add(2 * time.Minute)