We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 70507b7 commit d514743Copy full SHA for d514743
crates/uv-client/src/base_client.rs
@@ -456,7 +456,7 @@ impl RetryableStrategy for UvRetryableStrategy {
456
///
457
/// These cases should be safe to retry with [`Retryable::Transient`].
458
pub fn is_extended_transient_error(err: &dyn Error) -> bool {
459
- trace!("Attempting to retry error: {err:?}");
+ trace!("Considering retry of error: {err:?}");
460
461
if let Some(io) = find_source::<std::io::Error>(&err) {
462
if io.kind() == std::io::ErrorKind::ConnectionReset
0 commit comments