We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2085eba commit 85fb06fCopy full SHA for 85fb06f
src/types.rs
@@ -66,6 +66,8 @@ impl HttpClient {
66
retries += 1;
67
if retries >= RETRY_COUNT {
68
return Err(err);
69
+ } else {
70
+ tokio::time::sleep(tokio::time::Duration::from_millis(200)).await;
71
}
72
};
73
0 commit comments