Increase retry for the websocket

This commit is contained in:
angelblue05 2018-05-09 16:53:10 -05:00
parent 3e2a300eec
commit d30701956b
1 changed files with 1 additions and 1 deletions

View File

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