Skip to content

Commit

Permalink
Disable ray scanning
Browse files Browse the repository at this point in the history
  • Loading branch information
cryptobench committed Mar 13, 2024
1 parent 55bd6ea commit c3f72bd
Showing 1 changed file with 13 additions and 6 deletions.
19 changes: 13 additions & 6 deletions stats-backend/core/celery.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ def setup_periodic_tasks(sender, **kwargs):
get_provider_task_data,
# online_nodes_uptime_donut_data,
# v2_network_stats_to_redis,
# sum_highest_runtime_resources,
)

# sender.add_periodic_task(
Expand Down Expand Up @@ -90,6 +91,12 @@ def setup_periodic_tasks(sender, **kwargs):
)
# sender.add_periodic_task(
# 60,
# sum_highest_runtime_resources.s(),
# queue="default",
# options={"queue": "default", "routing_key": "default"},
# )
# sender.add_periodic_task(
# 60,
# online_nodes_uptime_donut_data.s(),
# queue="default",
# options={"queue": "default", "routing_key": "default"},
Expand Down Expand Up @@ -143,12 +150,12 @@ def setup_periodic_tasks(sender, **kwargs):
queue="yagna",
options={"queue": "yagna", "routing_key": "yagna"},
)
sender.add_periodic_task(
60.0,
v2_offer_scraper.s(subnet_tag="ray-on-golem-heads"),
queue="yagna",
options={"queue": "yagna", "routing_key": "yagna"},
)
# sender.add_periodic_task(
# 60.0,
# v2_offer_scraper.s(subnet_tag="ray-on-golem-heads"),
# queue="yagna",
# options={"queue": "yagna", "routing_key": "yagna"},
# )
sender.add_periodic_task(
20.0,
v2_network_online_to_redis.s(),
Expand Down

0 comments on commit c3f72bd

Please sign in to comment.