Skip to content

Commit

Permalink
don't clean the draft templates at all
Browse files Browse the repository at this point in the history
  • Loading branch information
vedina authored Sep 25, 2024
1 parent 07828a9 commit 348c772
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 348c772

Please sign in to comment.