Switch from expire to delete redis log_entries

This commit is contained in:
Antoine Legrand 2017-03-17 15:35:47 +01:00
parent f08e4921f2
commit ec847ce613
3 changed files with 15 additions and 1 deletions

View file

@ -53,7 +53,7 @@ class ArchiveBuildLogsWorker(Worker):
to_update.save()
build_logs.expire_status(to_update.uuid)
build_logs.expire_log_entries(to_update.uuid)
build_logs.delete_log_entries(to_update.uuid)
if __name__ == "__main__":