Skip to content

Commit

Permalink
don't clean the draft templates at all (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
vedina authored Sep 25, 2024
2 parents 07828a9 + 348c772 commit d1b0121
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rcapi/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def cleanup_templates():

scheduler = BackgroundScheduler()
scheduler.add_job(cleanup_tasks, 'interval', minutes=120) # Clean up every 120 minutes
scheduler.add_job(cleanup_templates, 'interval', hours=24) # test, otherwise once a day would be ok
# scheduler.add_job(cleanup_templates, 'interval', hours=24) # don't clean the templates
scheduler.start()

if __name__ == "__main__":
Expand Down

0 comments on commit d1b0121

Please sign in to comment.