From 7b4e73c3abeadded511098a7ba1cf6cdd7572e18 Mon Sep 17 00:00:00 2001 From: Stephen Paul Weber Date: Tue, 30 Jan 2024 14:33:45 -0500 Subject: [PATCH] Increase allowed iq timeout from scripts --- 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 70d2300c44e30e58c20ae704178c3300907ce433..60abcce5e75d29bb1c5913d6e6fd4a8ef22a62fb 100644 --- a/lib/blather_notify.rb +++ b/lib/blather_notify.rb @@ -143,7 +143,7 @@ module BlatherNotify @thread&.join end - def self.timeout_promise(promise, timeout: 15) + def self.timeout_promise(promise, timeout: 30) timer = EventMachine::Timer.new(timeout) { promise.reject(:timeout) }