From 2050804d85b75c067ede0f688ca99e3bbc322f81 Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Fri, 16 Feb 2024 12:59:20 -0700 Subject: [PATCH] Stop communicators --- frigate/app.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/frigate/app.py b/frigate/app.py index c78243a16..f22908f6c 100644 --- a/frigate/app.py +++ b/frigate/app.py @@ -684,8 +684,11 @@ class FrigateApp: self.detection_queue.close() self.detection_queue.join_thread() - self.dispatcher.stop() + # Stop Communicators + self.inter_process_communicator.stop() self.inter_config_updater.stop() + + self.dispatcher.stop() self.detected_frames_processor.join() self.ptz_autotracker_thread.join() self.event_processor.join()