From 9f42d59ef31f264343a2bf01f42f1e61d6e78a9f Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Mon, 10 Feb 2025 20:36:53 -0600 Subject: [PATCH] remove warning message --- frigate/comms/dispatcher.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/frigate/comms/dispatcher.py b/frigate/comms/dispatcher.py index 5801b4916..e0c2d96e3 100644 --- a/frigate/comms/dispatcher.py +++ b/frigate/comms/dispatcher.py @@ -76,8 +76,6 @@ class Dispatcher: self.web_push_client = next( (comm for comm in communicators if isinstance(comm, WebPushClient)), None ) - if self.web_push_client is None: - logger.warning("WebPushClient not found in communicators") def _receive(self, topic: str, payload: str) -> Optional[Any]: """Handle receiving of payload from communicators."""