Skip to content

Commit

Permalink
Merge pull request #526 from biocore/csymons_celery_20230816
Browse files Browse the repository at this point in the history
Celery Task Adjustments for Staging
  • Loading branch information
cassidysymons authored Aug 16, 2023
2 parents a5afafc + 6304e2e commit a8f9681
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions microsetta_private_api/celery_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ def __call__(self, *args, **kwargs):
"task": "microsetta_private_api.util.vioscreen.refresh_headers",
"schedule": 55 * 60
},
"update_vioscreen_sessions": {
"task": "microsetta_private_api.util.vioscreen.update_session_detail", # noqa
"schedule": 60 * 60 * 24 # every 24 hours
},
# "update_vioscreen_sessions": {
# "task": "microsetta_private_api.util.vioscreen.update_session_detail", # noqa
# "schedule": 60 * 60 * 24 # every 24 hours
# },
"poll_daklapack_orders": {
"task": "microsetta_private_api.admin.daklapack_polling.poll_dak_orders", # noqa
"schedule": 60 * 60 * 4 # every 4 hours
Expand All @@ -45,10 +45,10 @@ def __call__(self, *args, **kwargs):
"task": "microsetta_private_api.util.fundrazr.get_fundrazr_transactions", # noqa
"schedule": 60 * 60 # every hour
},
# "fulfill_new_transactions": {
# "task": "microsetta_private_api.util.perk_fulfillment.fulfill_new_transactions", # noqa
# "schedule": 60 * 60 # every hour
# },
"fulfill_new_transactions": {
"task": "microsetta_private_api.util.perk_fulfillment.fulfill_new_transactions", # noqa
"schedule": 60 * 60 # every hour
},
# "fulfill_subscriptions": {
# "task": "microsetta_private_api.util.perk_fulfillment.process_subscription_fulfillments", # noqa
# "schedule": 60 * 60 * 24 # every 24 hours
Expand Down

0 comments on commit a8f9681

Please sign in to comment.