mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-09 04:20:17 +02:00
Update celery tasks to new style & remove djcelery Vanilla celery + django-celery-beat take over the role of djcelery. Task schedules are consolidated into settings instead of residing in code. Update docs and example supervisor configs.
6 lines
116 B
Python
6 lines
116 B
Python
from __future__ import unicode_literals
|
|
from eveonline.tasks import run_corp_update
|
|
|
|
run_corp_update.apply()
|
|
quit()
|