From ed816c988c8c53212218710b7225c39fbb3ad8d6 Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Mon, 5 Jun 2023 17:02:20 -0600 Subject: [PATCH] Fix separator --- frigate/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frigate/app.py b/frigate/app.py index 059bc5ad7..79147d221 100644 --- a/frigate/app.py +++ b/frigate/app.py @@ -207,7 +207,7 @@ class FrigateApp: # NOTE: all db accessing processes need to be created before the db can be bound to the main process self.db = SqliteQueueDatabase( self.config.database.path, - pragmas={'auto_vacuum', 'FULL'}, # Does not defragment database + pragmas={'auto_vacuum': 'FULL'}, # Does not defragment database ) models = [Event, Recordings, Timeline] self.db.bind(models)