From b030773881b9a69309471ab69de6f049a4509303 Mon Sep 17 00:00:00 2001 From: Bryan Stitt Date: Mon, 16 Oct 2023 11:10:36 -0700 Subject: [PATCH] rewest timeout should be shorter than erigons --- web3_proxy/src/app/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web3_proxy/src/app/mod.rs b/web3_proxy/src/app/mod.rs index 35ae96b7..15f761c6 100644 --- a/web3_proxy/src/app/mod.rs +++ b/web3_proxy/src/app/mod.rs @@ -333,7 +333,7 @@ impl App { .no_brotli() .no_deflate() .no_gzip() - .timeout(Duration::from_secs(5 * 60)) + .timeout(Duration::from_secs(5 * 60 - 2)) .user_agent(APP_USER_AGENT) .build()?, );