mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-02-05 18:55:23 +03:00
Fix separator and remove incorrect log
This commit is contained in:
parent
ed816c988c
commit
3e93015b8f
@ -39,7 +39,7 @@ def manage_recordings(
|
|||||||
|
|
||||||
db = SqliteQueueDatabase(
|
db = SqliteQueueDatabase(
|
||||||
config.database.path,
|
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]
|
||||||
db.bind(models)
|
db.bind(models)
|
||||||
@ -51,5 +51,3 @@ def manage_recordings(
|
|||||||
|
|
||||||
cleanup = RecordingCleanup(config, stop_event)
|
cleanup = RecordingCleanup(config, stop_event)
|
||||||
cleanup.start()
|
cleanup.start()
|
||||||
|
|
||||||
logger.info("recording_manager: exiting subprocess")
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user