mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-08-18 13:47:20 +02:00
Catch birdseye websocket error (#17502)
This commit is contained in:
parent
f0b15e1f04
commit
6475e042b5
@ -259,7 +259,7 @@ class BroadcastThread(threading.Thread):
|
||||
ws.send(buf, binary=True)
|
||||
except ValueError:
|
||||
pass
|
||||
except (BrokenPipeError, ConnectionResetError) as e:
|
||||
except (BrokenPipeError, ConnectionResetError, OSError) as e:
|
||||
logger.debug(f"Websocket unexpectedly closed {e}")
|
||||
elif self.converter.process.poll() is not None:
|
||||
break
|
||||
|
Loading…
Reference in New Issue
Block a user