Increase allowed iq timeout from scripts

Stephen Paul Weber created

Change summary

lib/blather_notify.rb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

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)
 		}