4 comments (4 comments)2 reactions (2 reactions)0 assignees (0 assignees)Rust84.934 stars (84.934 stars)3.111 forks (3.111 forks)batch import
bughelp wanted
Description
e.g., https://github.com/astral-sh/uv/issues/16233
We should not be retrying that failed request.
Guia do colaborador
- Pilha de tecnologia
- rust
- Domain
- securityapi
- Tipo Issue
- bug
- DifficultyDificuldade de implementação estimada para um novo contribuidor, de 1 para alterações muito pequenas a 5 para trabalho de nível especializado.
- 3
- Tempo estimadoUm intervalo de tempo aproximado para um colaborador experiente investigar, implementar, testar e preparar um pull request.
- 1-3 hours
- Status da atividadeQuão disponível o issue aparece agora: novo, ativo, obsoleto, bloqueado ou aguardando entrada do mantenedor.
- fresh
- ClarityCom que clareza o issue explica a mudança esperada, os critérios de aceitação e a próxima etapa.
- mostly clear
- Prerequisites
- basic Rustunderstanding of HTTP retry logic
- Simpatia para novatosUma pontuação de 1 a 100 que estima o quão acessível este issue é para colaboradores iniciantes.
- 40
- Direção de pesquisa
- 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.