mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-22 17:31:03 +01:00
8 lines
142 B
Python
8 lines
142 B
Python
from utils import node
|
|
from .celery import celery_app
|
|
|
|
|
|
@celery_app.task
|
|
def update_node_status():
|
|
node.update_nodes_status(refresh=True)
|