cleanup empty directories

This commit is contained in:
Blake Blackshear
2020-11-30 21:08:47 -06:00
parent f5c4bfa7b4
commit feb42181de
3 changed files with 21 additions and 6 deletions

View File

@@ -116,11 +116,11 @@ class FrigateApp():
def start_event_processor(self):
self.event_processor = EventProcessor(self.config, self.camera_metrics, self.event_queue, self.event_processed_queue, self.stop_event)
self.event_processor.start()
def start_event_cleanup(self):
self.event_cleanup = EventCleanup(self.config, self.stop_event)
self.event_cleanup.start()
def start_recording_maintainer(self):
self.recording_maintainer = RecordingMaintainer(self.config, self.stop_event)
self.recording_maintainer.start()