Procházet zdrojové kódy

keep 5 segments in cache

Blake Blackshear před 3 roky
rodič
revize
114415b5e1
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  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():
         for camera in grouped_recordings.keys():
-            if len(grouped_recordings[camera]) > 2:
+            if len(grouped_recordings[camera]) > 5:
                 sorted_recordings = sorted(
                 sorted_recordings = sorted(
                     grouped_recordings[camera], key=lambda i: i["start_time"]
                     grouped_recordings[camera], key=lambda i: i["start_time"]
                 )
                 )