Increase waitforabort timers

This commit is contained in:
angelblue05 2018-02-08 18:07:01 -06:00
parent 4413f469a3
commit 78d241a8c3
2 changed files with 2 additions and 2 deletions

View File

@ -285,7 +285,7 @@ class Service(object):
# Server went offline
break
if self.monitor.waitForAbort(5):
if self.monitor.waitForAbort(30):
# Abort was requested while waiting. We should exit
break

View File

@ -364,7 +364,7 @@ class WebSocketClient(threading.Thread):
if self._stop_websocket:
break
if self.monitor.waitForAbort(5):
if self.monitor.waitForAbort(10):
# Abort was requested, exit
break