From 4b6de2bb766d7dca6c2351958760653ade1aa17d Mon Sep 17 00:00:00 2001 From: Stephen Paul Weber Date: Tue, 16 Mar 2021 19:15:12 -0500 Subject: [PATCH] Higher XMPP connect timeout Because sometimes the box is under high load. --- lib/blather_notify.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/blather_notify.rb b/lib/blather_notify.rb index 4152aa086e7d45d86213c7cbcf91256c6030dc2a..b1aaa396b58767871d10b34ef8f7b34920428d84 100644 --- a/lib/blather_notify.rb +++ b/lib/blather_notify.rb @@ -23,6 +23,6 @@ module BlatherNotify at_exit { shutdown } - Timeout.timeout(5) { @ready.pop } + Timeout.timeout(30) { @ready.pop } end end