mirror of
https://github.com/house-of-vanity/OutFleet.git
synced 2025-07-07 09:24:07 +00:00
Fixed tasks
This commit is contained in:
@ -3,19 +3,21 @@ import os
|
||||
|
||||
from celery import Celery
|
||||
from celery import shared_task
|
||||
from celery.schedules import crontab
|
||||
|
||||
|
||||
# Set the default Django settings module for the 'celery' program.
|
||||
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'mysite.settings')
|
||||
logger = logging.getLogger(__name__)
|
||||
app = Celery('mysite')
|
||||
|
||||
# Using a string here means the worker doesn't have to serialize
|
||||
# the configuration object to child processes.
|
||||
# - namespace='CELERY' means all celery-related configuration keys
|
||||
# should have a `CELERY_` prefix.
|
||||
app.conf.beat_schedule = {
|
||||
'periodical_servers_sync': {
|
||||
'task': 'sync_all_servers',
|
||||
'schedule': crontab(minute='*'),
|
||||
},
|
||||
}
|
||||
|
||||
|
||||
app.config_from_object('django.conf:settings', namespace='CELERY')
|
||||
|
||||
# Load task modules from all registered Django apps.
|
||||
app.autodiscover_tasks()
|
||||
|
||||
|
Reference in New Issue
Block a user