File tree 2 files changed +8
-2
lines changed
2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ rustls-pemfile = "2"
31
31
serde = { version = " 1.0" , features = [" derive" , " rc" ] }
32
32
serde_json = " 1.0"
33
33
thiserror = " 2.0"
34
- tokio = { version = " 1.1" , features = [" fs" , " sync" ] }
34
+ tokio = { version = " 1.1" , features = [" fs" , " sync" , " time " ] }
35
35
tracing = " 0.1.29"
36
36
tracing-futures = " 0.2.5"
37
37
url = " 2"
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ use hyper_util::rt::TokioExecutor;
16
16
use ring:: rand:: SystemRandom ;
17
17
use ring:: signature:: { RsaKeyPair , RSA_PKCS1_SHA256 } ;
18
18
use serde:: { Deserialize , Deserializer } ;
19
+ use tokio:: time:: sleep;
19
20
use tracing:: { debug, warn} ;
20
21
21
22
use crate :: Error ;
@@ -50,7 +51,11 @@ impl HttpClient {
50
51
request : & impl Fn ( ) -> Request < Full < Bytes > > ,
51
52
provider : & ' static str ,
52
53
) -> Result < Arc < Token > , Error > {
54
+ //We multiply it by two on every iteration to progressively slow down ourself
55
+ //At most we will perform 50 + 100 + 200 + 400 wait as we're limited by 4 re-tries
56
+ let mut sleep_interval = Duration :: from_millis ( 50 ) ;
53
57
let mut retries = 0 ;
58
+
54
59
let body = loop {
55
60
let err = match self . request ( request ( ) , provider) . await {
56
61
// Early return when the request succeeds
@@ -68,7 +73,8 @@ impl HttpClient {
68
73
return Err ( err) ;
69
74
}
70
75
71
- tokio:: time:: sleep ( Duration :: from_millis ( 200 ) ) . await ;
76
+ sleep ( sleep_interval) . await ;
77
+ sleep_interval *= 2 ;
72
78
} ;
73
79
74
80
serde_json:: from_slice ( & body)
You can’t perform that action at this time.
0 commit comments