diff --git a/frigate/record/record.py b/frigate/record/record.py index bc83b46ff..8916934d8 100644 --- a/frigate/record/record.py +++ b/frigate/record/record.py @@ -39,7 +39,7 @@ def manage_recordings( db = SqliteQueueDatabase( config.database.path, - pragmas={'auto_vacuum', 'FULL'}, # Does not defragment database + pragmas={'auto_vacuum': 'FULL'}, # Does not defragment database ) models = [Event, Recordings, Timeline] db.bind(models) @@ -51,5 +51,3 @@ def manage_recordings( cleanup = RecordingCleanup(config, stop_event) cleanup.start() - - logger.info("recording_manager: exiting subprocess")