From 17d8e41ebd4ee0ad796f4af47c83ff7fd929b8c1 Mon Sep 17 00:00:00 2001 From: JP Verdejo Date: Thu, 13 Jul 2023 10:27:22 -0500 Subject: [PATCH] Address feedback --- frigate/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frigate/app.py b/frigate/app.py index fb0fe3601..b0ec223b4 100644 --- a/frigate/app.py +++ b/frigate/app.py @@ -228,7 +228,7 @@ class FrigateApp: self.timeline_queue: Queue = ff.Queue(DEFAULT_QUEUE_BUFFER_SIZE) # Queue for inter process communication - self.inter_process_queue: Queue = ff.Queue() + self.inter_process_queue: Queue = ff.Queue(DEFAULT_QUEUE_BUFFER_SIZE) def init_database(self) -> None: def vacuum_db(db: SqliteExtDatabase) -> None: