Fix separator

This commit is contained in:
Nicolas Mowen 2023-06-05 17:02:20 -06:00 committed by Nick Mowen
parent ea7ea018d0
commit ed816c988c

View File

@ -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 # NOTE: all db accessing processes need to be created before the db can be bound to the main process
self.db = SqliteQueueDatabase( self.db = SqliteQueueDatabase(
self.config.database.path, self.config.database.path,
pragmas={'auto_vacuum', 'FULL'}, # Does not defragment database pragmas={'auto_vacuum': 'FULL'}, # Does not defragment database
) )
models = [Event, Recordings, Timeline] models = [Event, Recordings, Timeline]
self.db.bind(models) self.db.bind(models)