From 6475e042b5bf7e5a0775aa97b7b5493dd42ce58e Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Wed, 2 Apr 2025 08:38:48 -0500 Subject: [PATCH] Catch birdseye websocket error (#17502) --- frigate/output/birdseye.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frigate/output/birdseye.py b/frigate/output/birdseye.py index 9bbd3abee..919aa3054 100644 --- a/frigate/output/birdseye.py +++ b/frigate/output/birdseye.py @@ -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