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