mirror of
https://github.com/GSA/notifications-api.git
synced 2026-07-11 04:13:47 -04:00
10 lines
265 B
Python
10 lines
265 B
Python
from app import celery
|
|
from app.dao.services_dao import get_model_services
|
|
|
|
|
|
@celery.task(name="refresh-services")
|
|
def refresh_services():
|
|
print(get_model_services())
|
|
for service in get_model_services():
|
|
celery.control.add_consumer(str(service.id))
|