chore: Reduce FETCH_OPTION_TIMEOUT from 10 to 3 seconds in config.rs (#5117)

Reduce FETCH_OPTION_TIMEOUT from 10 to 3 seconds in config.rs
This commit is contained in:
Lei, HUANG
2024-12-09 21:39:18 +08:00
committed by GitHub
parent 2fcb95f50a
commit ce86ba3425

View File

@@ -46,7 +46,7 @@ const PAGE_CACHE_SIZE_FACTOR: u64 = 8;
const INDEX_CREATE_MEM_THRESHOLD_FACTOR: u64 = 16;
/// Fetch option timeout
pub(crate) const FETCH_OPTION_TIMEOUT: Duration = Duration::from_secs(10);
pub(crate) const FETCH_OPTION_TIMEOUT: Duration = Duration::from_secs(3);
/// Configuration for [MitoEngine](crate::engine::MitoEngine).
#[derive(Debug, Serialize, Deserialize, Clone, PartialEq, Eq)]