The issue requests that SSL certificate errors should not be retried when making HTTP requests. Start by locating the retry logic in the codebase, likely in the HTTP client module (e.g., src/**/http.rs or similar). Look for where errors are caught and retries are triggered. Identify how SSL errors are represented (e.g., via the `rustls` or `native tls` crate) and ensure that such errors skip the retry loop. No linked PRs exist; refer to the referenced issue ( #16233 ) for context. After implementing, verify that the behavior matches expectations by simulating an SSL error.