Skip to content

Commit

Permalink
Disable related artists job (#7652)
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacsolo authored Feb 20, 2024
1 parent 73cab49 commit 0db255e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/discovery-provider/src/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ def configure_celery(celery, test_config=None):
"src.tasks.index_eth",
"src.tasks.index_oracles",
"src.tasks.index_rewards_manager",
"src.tasks.index_related_artists",
# "src.tasks.index_related_artists",
"src.tasks.calculate_trending_challenges",
"src.tasks.backfill_cid_data",
"src.tasks.user_listening_history.index_user_listening_history",
Expand Down Expand Up @@ -391,10 +391,10 @@ def configure_celery(celery, test_config=None):
"task": "index_rewards_manager",
"schedule": timedelta(seconds=5),
},
"index_related_artists": {
"task": "index_related_artists",
"schedule": timedelta(hours=12),
},
# "index_related_artists": {
# "task": "index_related_artists",
# "schedule": timedelta(hours=12),
# },
"index_user_listening_history": {
"task": "index_user_listening_history",
"schedule": timedelta(seconds=5),
Expand Down

0 comments on commit 0db255e

Please sign in to comment.