From d06b587d332f47c5a28790040dbaae33c0959f2e Mon Sep 17 00:00:00 2001 From: Blake Blackshear Date: Wed, 25 Nov 2020 12:09:29 -0600 Subject: [PATCH] ensure all events are cleaned up --- frigate/events.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frigate/events.py b/frigate/events.py index 251e4c9c9..68b47bf5d 100644 --- a/frigate/events.py +++ b/frigate/events.py @@ -165,12 +165,14 @@ class EventProcessor(threading.Thread): # if save clips is not enabled for this camera, just continue if not save_clips_config.enabled: + self.event_processed_queue.put((event_data['id'], camera)) continue # if specific objects are listed for this camera, only save clips for them # TODO: default to all tracked objects rather than checking for None if save_clips_config.objects: if not event_data['label'] in save_clips_config.objects: + self.event_processed_queue.put((event_data['id'], camera)) continue if event_type == 'start':