mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2026-08-03 14:26:24 +03:00
vmbackup fails immediately when S3 returns a 429. The SDK retries TooManyRequestsException but not the short form TooManyRequests, and 429 isn't in the retryable status codes either (only 500/502/503/504 are). Added both so a rate limit doesn't kill the whole backup. Note: Followed the same pattern as ExpiredToken and IncompleteBody in the same retryer config. Fixes https://github.com/VictoriaMetrics/VictoriaMetrics/issues/11218