Skip to content

Commit d514743

Browse files
authored
Improve retry trace message (#11108)
1 parent 70507b7 commit d514743

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/uv-client/src/base_client.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -456,7 +456,7 @@ impl RetryableStrategy for UvRetryableStrategy {
456456
///
457457
/// These cases should be safe to retry with [`Retryable::Transient`].
458458
pub fn is_extended_transient_error(err: &dyn Error) -> bool {
459-
trace!("Attempting to retry error: {err:?}");
459+
trace!("Considering retry of error: {err:?}");
460460

461461
if let Some(io) = find_source::<std::io::Error>(&err) {
462462
if io.kind() == std::io::ErrorKind::ConnectionReset

0 commit comments

Comments
 (0)