1retry_wait_time = 5
 2
 3accept = ["200..=204", "429"]
 4
 5max_retries = 5
 6
 7timeout = 45
 8
 9exclude = [
10    # Don't fail CI check if collab is down
11    'https://staging-collab.zed.dev/',
12    "https://collab.zed.dev",
13
14    # Slow and unreliable server.
15    'https://repology.org',
16
17    # The following websites are rate limited or use bot detection and aren't nice enough to respond with 429:
18    'https://openai.com',
19    'https://claude.ai/download',
20    'https://www.perplexity.ai',
21    'https://platform.deepseek.com',
22    'https://console.anthropic.com',
23    'https://platform.openai.com',
24    'https://linux.die.net/man/1/sed',
25    'https://allaboutcookies.org',
26    'https://www.gnu.org',
27    'https://auth.mistral.ai',
28    'https://console.mistral.ai',
29]