From b3fa0dab3eba1831a42bf436d41889daedb5157e Mon Sep 17 00:00:00 2001 From: Wez Furlong Date: Wed, 8 Mar 2023 22:54:49 -0700 Subject: [PATCH] raise integration test timeouts a bit --- crates/rfc5321/src/client.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/rfc5321/src/client.rs b/crates/rfc5321/src/client.rs index 4cc9c096..e4fe3917 100644 --- a/crates/rfc5321/src/client.rs +++ b/crates/rfc5321/src/client.rs @@ -142,7 +142,7 @@ impl SmtpClientTimeouts { } pub fn short_timeouts() -> Self { - let short = Duration::from_secs(5); + let short = Duration::from_secs(20); Self { connect_timeout: short, ehlo_timeout: short,