Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
cryptobench committed Sep 25, 2024
1 parent ed06109 commit 38a078e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion stats-backend/api2/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -1911,7 +1911,7 @@ def fetch_and_update_relay_nodes_online_status():
missing_nodes = previously_online - current_online_nodes
if missing_nodes:
check_missing_nodes.delay(list(missing_nodes))
fetch_and_store_relay_nodes.apply_async(countdown=15)
fetch_and_update_relay_nodes_online_status.apply_async(countdown=15)


@app.task
Expand Down
2 changes: 1 addition & 1 deletion stats-backend/core/celery.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def setup_periodic_tasks(sender, **kwargs):
extract_wallets_and_ids,
fetch_and_update_relay_nodes_online_status,
)
fetch_and_store_relay_nodes.delay()
fetch_and_update_relay_nodes_online_status.delay()
sender.add_periodic_task(
60,
computing_total_over_time.s(),
Expand Down

0 comments on commit 38a078e

Please sign in to comment.