mirror of
https://github.com/astral-sh/uv.git
synced 2025-08-04 19:08:04 +00:00
Perform 3 retries by default instead of 0 on failed index requests (#710)
As a user, I'd expect retries to occur by default. We should also expose this via a setting probably.
This commit is contained in:
parent
9f8b7e7e12
commit
ab15b08cbe
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ impl RegistryClientBuilder {
|
|||
index_urls: IndexUrls::default(),
|
||||
proxy: Url::parse("https://pypi-metadata.ruff.rs").unwrap(),
|
||||
cache,
|
||||
retries: 0,
|
||||
retries: 3,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue