mirror of
https://github.com/ha7ilm/openwebrx.git
synced 2026-01-23 00:30:21 +01:00
handle socket timeouts
This commit is contained in:
parent
b1742dafc2
commit
a68ba01320
|
|
@ -160,6 +160,9 @@ class WebSocketConnection(object):
|
|||
logger.warning("unsupported opcode: {0}".format(opcode))
|
||||
except IncompleteRead:
|
||||
available = False
|
||||
except TimeoutError:
|
||||
logger.warning("websocket timed out; closing connection")
|
||||
self.open = False
|
||||
|
||||
logger.debug("websocket loop ended; shutting down")
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue