give 3 seconds instead of 10

This commit is contained in:
Bryan Stitt 2023-11-01 10:21:38 -07:00
parent 461d674577
commit 93b594afc0

View File

@ -355,7 +355,7 @@ impl ValidatedRequest {
_ => CacheMode::Never,
};
let connect_timeout = Duration::from_secs(3);
let connect_timeout = Duration::from_secs(10);
let expire_timeout = max_wait.unwrap_or_else(|| Duration::from_secs(295));
let x = Self {
@ -512,8 +512,7 @@ impl ValidatedRequest {
#[inline]
pub fn connect_timeout_at(&self) -> Instant {
// TODO: get from config
self.start_instant + Duration::from_secs(3)
self.start_instant + self.connect_timeout
}
#[inline]
@ -525,7 +524,7 @@ impl ValidatedRequest {
pub fn expire_at(&self) -> Instant {
// TODO: get from config
// erigon's timeout is 5 minutes so we want it shorter than that
self.start_instant + Duration::from_secs(295)
self.start_instant + self.expire_timeout
}
#[inline]