Perform 3 retries by default instead of 0 on failed index requests

This commit is contained in:
Zanie 2023-12-19 16:11:42 -06:00
parent ca8d519ae4
commit 653c448fd8

View file

@ -42,7 +42,7 @@ impl RegistryClientBuilder {
index_urls: IndexUrls::default(),
proxy: Url::parse("https://pypi-metadata.ruff.rs").unwrap(),
cache,
retries: 0,
retries: 3,
}
}
}