Skip to content

Commit

Permalink
Run update_lookup_stats more often
Browse files Browse the repository at this point in the history
  • Loading branch information
lalinsky committed May 6, 2023
1 parent 1e86b37 commit 284f0a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions acoustid/cron.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ def wrapper():

schedule = Scheduler()
# schedule.every().minute.do(wrap_job(run_backfill_meta_created))
schedule.every(1).to(3).minutes.do(wrap_job(run_update_lookup_stats))
schedule.every(1).to(5).minutes.do(wrap_job(run_update_user_agent_stats))
schedule.every(1).to(10).seconds.do(wrap_job(run_update_lookup_stats))
schedule.every(1).to(30).seconds.do(wrap_job(run_update_user_agent_stats))
# schedule.every(55).to(65).minutes.do(wrap_job(run_merge_missing_mbids))
schedule.every().day.at("00:10").do(wrap_job(run_update_stats))
return schedule
Expand Down

0 comments on commit 284f0a9

Please sign in to comment.