From ba57e67043212af296926ff10e4fb8c0eb676ec4 Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Tue, 11 Mar 2025 15:40:02 -0600 Subject: [PATCH] Don't wait for topic --- frigate/object_processing.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/frigate/object_processing.py b/frigate/object_processing.py index d31ca83e1..d13752277 100644 --- a/frigate/object_processing.py +++ b/frigate/object_processing.py @@ -792,9 +792,7 @@ class TrackedObjectProcessor(threading.Thread): # check for sub label updates while True: - (topic, payload) = self.sub_label_subscriber.check_for_update( - timeout=0.1 - ) + (topic, payload) = self.sub_label_subscriber.check_for_update(timeout=0) if not topic: break