Retry more in QuorumProvider inner providers (#1126)

* Retry more

* lower
pull/1142/head
Trevor Porter 2 years ago committed by GitHub
parent 8177e32832
commit 847bf04ae4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      rust/chains/abacus-ethereum/src/trait_builder.rs

@ -57,7 +57,7 @@ pub trait MakeableWithProvider {
// being retried, while retrying at the inner provider level will result in only the
// second RPC being retried (the one with the error), which is the desired behavior.
let retrying_provider =
RetryingProvider::new(http_provider, Some(3), Some(1000));
RetryingProvider::new(http_provider, Some(5), Some(1000));
let metrics_provider = self.wrap_rpc_with_metrics(
retrying_provider,
Url::parse(url)?,

Loading…
Cancel
Save