Skip to content

Commit

Permalink
fix(Autobot): autobot has been temporarily disabled (#1073)
Browse files Browse the repository at this point in the history
Closed #1072
  • Loading branch information
glaubervila authored Sep 2, 2024
1 parent 84ef349 commit 37b91a8
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions backend/coreAdmin/celery.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,16 @@
"task": "tno.tasks.update_asteroid_table",
"schedule": crontab(hour=2, minute=0, day_of_week=1),
},
# Executes every 10th and 25th day of every month.
"predict_job_for_upper_end_update": {
"task": "tno.tasks.predict_jobs_for_upper_end_update",
"schedule": crontab(hour=15, minute=0, day_of_month="10,25"),
},
# Executes every Day at 5:00 a.m.
"predict_job_for_updated_asteroids": {
"task": "tno.tasks.predict_jobs_by_updated_asteroids",
"schedule": crontab(hour=5, minute=0),
},
# # Executes every 10th and 25th day of every month.
# "predict_job_for_upper_end_update": {
# "task": "tno.tasks.predict_jobs_for_upper_end_update",
# "schedule": crontab(hour=15, minute=0, day_of_month="10,25"),
# },
# # Executes every Day at 5:00 a.m.
# "predict_job_for_updated_asteroids": {
# "task": "tno.tasks.predict_jobs_by_updated_asteroids",
# "schedule": crontab(hour=5, minute=0),
# },
}
app.conf.timezone = "UTC"

Expand Down

0 comments on commit 37b91a8

Please sign in to comment.