From c68d299b6fbf80e4a3e43a598272385f238757df Mon Sep 17 00:00:00 2001 From: David Eichmann Date: Wed, 24 Sep 2025 08:53:56 +0100 Subject: [PATCH] fix: crate::extensions::idle::Handle::wait() uses a 29 minute timeout The timeout was incorrectly set to 24 hours. This has been changed to 29 minutes to reflect the documentation on Handle struct and the reccomendation in RFC 2177. --- src/extensions/idle.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/extensions/idle.rs b/src/extensions/idle.rs index 072849d..42a6650 100644 --- a/src/extensions/idle.rs +++ b/src/extensions/idle.rs @@ -120,7 +120,7 @@ impl Handle { impl Future> + '_, stop_token::StopSource, ) { - self.wait_with_timeout(Duration::from_secs(24 * 60 * 60)) + self.wait_with_timeout(Duration::from_secs(29 * 60)) } /// Start listening to the server side responses.