Skip to content

Commit

Permalink
comment out update weight task as it is no longer needed
Browse files Browse the repository at this point in the history
  • Loading branch information
ABrain7710 committed Feb 12, 2025
1 parent d2f1b81 commit c199f85
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions augur/tasks/init/celery_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,8 +226,8 @@ def setup_periodic_tasks(sender, **kwargs):
logger.info(f"Scheduling refresh materialized view every night at 1am CDT")
sender.add_periodic_task(datetime.timedelta(days=mat_views_interval), refresh_materialized_views.s())

logger.info(f"Scheduling update of collection weights on midnight each day")
sender.add_periodic_task(crontab(hour=0, minute=0),augur_collection_update_weights.s())
# logger.info(f"Scheduling update of collection weights on midnight each day")
# sender.add_periodic_task(crontab(hour=0, minute=0),augur_collection_update_weights.s())

logger.info(f"Setting 404 repos to be marked for retry on midnight each day")
sender.add_periodic_task(crontab(hour=0, minute=0),retry_errored_repos.s())
Expand Down

0 comments on commit c199f85

Please sign in to comment.