Parcourir la source

keep 5 segments in cache

Blake Blackshear il y a 3 ans
Parent
commit
114415b5e1
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 2 2
      frigate/record.py

+ 2 - 2
frigate/record.py

@@ -88,9 +88,9 @@ class RecordingMaintainer(threading.Thread):
                 }
             )
 
-        # delete all cached files past the most recent 2
+        # delete all cached files past the most recent 5
         for camera in grouped_recordings.keys():
-            if len(grouped_recordings[camera]) > 2:
+            if len(grouped_recordings[camera]) > 5:
                 sorted_recordings = sorted(
                     grouped_recordings[camera], key=lambda i: i["start_time"]
                 )