if recording not on disk, delete from db and return

This commit is contained in:
Blake Blackshear 2022-02-02 07:29:45 -06:00
parent 4d2d11193f
commit 675f21e23a

View File

@ -497,7 +497,8 @@ class RecordingCleanup(threading.Thread):
oldest_timestamp = datetime.datetime.now().timestamp()
except FileNotFoundError:
logger.warning(f"Unable to find file from recordings database: {p}")
oldest_timestamp = datetime.datetime.now().timestamp()
Recordings.delete().where(Recordings.id == oldest_recording.id).execute()
return
logger.debug(f"Oldest recording in the db: {oldest_timestamp}")
process = sp.run(