From 847bf04ae458fa658921df1557ebd05c266c4285 Mon Sep 17 00:00:00 2001 From: Trevor Porter Date: Wed, 5 Oct 2022 02:15:18 +0100 Subject: [PATCH] Retry more in QuorumProvider inner providers (#1126) * Retry more * lower --- rust/chains/abacus-ethereum/src/trait_builder.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/chains/abacus-ethereum/src/trait_builder.rs b/rust/chains/abacus-ethereum/src/trait_builder.rs index a0fbf7236..a4c208ff2 100644 --- a/rust/chains/abacus-ethereum/src/trait_builder.rs +++ b/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)?,