mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-11-21 19:07:46 +01:00
Recordings - fix expire_file
This commit is contained in:
parent
e9b3b09cc2
commit
2bc8736fd9
@ -98,9 +98,9 @@ class RecordingMaintainer(threading.Thread):
|
|||||||
delete_before[name] = datetime.datetime.now().timestamp() - SECONDS_IN_DAY*camera.record.retain_days
|
delete_before[name] = datetime.datetime.now().timestamp() - SECONDS_IN_DAY*camera.record.retain_days
|
||||||
|
|
||||||
for p in Path('/media/frigate/recordings').rglob("*.mp4"):
|
for p in Path('/media/frigate/recordings').rglob("*.mp4"):
|
||||||
if not p.parent in delete_before:
|
if not p.parent.name in delete_before:
|
||||||
continue
|
continue
|
||||||
if p.stat().st_mtime < delete_before[p.parent]:
|
if p.stat().st_mtime < delete_before[p.parent.name]:
|
||||||
p.unlink(missing_ok=True)
|
p.unlink(missing_ok=True)
|
||||||
|
|
||||||
def run(self):
|
def run(self):
|
||||||
|
Loading…
Reference in New Issue
Block a user