mirror of
https://github.com/astral-sh/uv.git
synced 2025-08-04 19:08:04 +00:00
Improve retry trace message (#11108)
This commit is contained in:
parent
70507b7898
commit
d514743b1a
1 changed files with 1 additions and 1 deletions
|
@ -456,7 +456,7 @@ impl RetryableStrategy for UvRetryableStrategy {
|
|||
///
|
||||
/// These cases should be safe to retry with [`Retryable::Transient`].
|
||||
pub fn is_extended_transient_error(err: &dyn Error) -> bool {
|
||||
trace!("Attempting to retry error: {err:?}");
|
||||
trace!("Considering retry of error: {err:?}");
|
||||
|
||||
if let Some(io) = find_source::<std::io::Error>(&err) {
|
||||
if io.kind() == std::io::ErrorKind::ConnectionReset
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue