From cedea5be48f176ccf420a62c2414b92af459e0e6 Mon Sep 17 00:00:00 2001 From: Shunsuke Shibayama Date: Sat, 25 Nov 2023 13:36:21 +0900 Subject: [PATCH] fix: relax timeout --- crates/erg_common/shared.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/erg_common/shared.rs b/crates/erg_common/shared.rs index 2c022e134..32e123b90 100644 --- a/crates/erg_common/shared.rs +++ b/crates/erg_common/shared.rs @@ -12,7 +12,7 @@ use std::time::Duration; use thread_local::ThreadLocal; -const TIMEOUT: Duration = Duration::from_secs(2); +const TIMEOUT: Duration = Duration::from_secs(3); #[derive(Debug)] pub struct BorrowInfo {