Commit 2430b00 1 parent 70b17ed commit 2430b00 Copy full SHA for 2430b00
File tree 2 files changed +2
-6
lines changed
2 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -36,6 +36,8 @@ rattler_conda_types = { workspace = true }
36
36
rattler_networking = { workspace = true , features = [" gcs" ] }
37
37
reqwest = { workspace = true }
38
38
reqwest-middleware = { workspace = true }
39
+ reqwest-retry = { workspace = true }
40
+ retry-policies = { workspace = true }
39
41
serde = { workspace = true , features = [" derive" ] }
40
42
serde_json = { workspace = true }
41
43
serde_yaml = { workspace = true }
@@ -44,8 +46,6 @@ thiserror = { workspace = true }
44
46
tracing = { workspace = true }
45
47
tracing-subscriber = { workspace = true }
46
48
url = { workspace = true }
47
- reqwest-retry = { workspace = true }
48
- retry-policies = { workspace = true }
49
49
50
50
[dev-dependencies ]
51
51
insta = { workspace = true }
Original file line number Diff line number Diff line change @@ -17,10 +17,6 @@ use std::collections::HashMap;
17
17
18
18
use pixi_config:: Config ;
19
19
20
- fn default_retry_policy ( ) -> ExponentialBackoff {
21
- ExponentialBackoff :: builder ( ) . build_with_max_retries ( 3 )
22
- }
23
-
24
20
fn auth_middleware ( config : & Config ) -> Result < AuthenticationMiddleware , FileStorageError > {
25
21
if let Some ( auth_file) = config. authentication_override_file ( ) {
26
22
tracing:: info!( "Loading authentication from file: {:?}" , auth_file) ;
You can’t perform that action at this time.
0 commit comments