From 3af1a6a1fb053e118c9b7515d32084e83383512e Mon Sep 17 00:00:00 2001 From: Basraah Date: Mon, 13 Feb 2017 13:45:50 +1000 Subject: [PATCH] Correct scheduled task calls --- alliance_auth/settings.py.example | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/alliance_auth/settings.py.example b/alliance_auth/settings.py.example index dcd269a5..470f5941 100644 --- a/alliance_auth/settings.py.example +++ b/alliance_auth/settings.py.example @@ -668,12 +668,12 @@ STR_BLUE_ALLIANCE_IDS = [str(id) for id in BLUE_ALLIANCE_IDS] # Conditionally add periodic tasks for services if installed if 'services.modules.teamspeak3' in INSTALLED_APPS: CELERYBEAT_SCHEDULE['run_ts3_group_update'] = { - 'task': 'services.modules.teamspeak3.tasks.Teamspeak3Tasks.run_ts3_group_update', + 'task': 'services.modules.teamspeak3.tasks.run_ts3_group_update', 'schedule': crontab(minute='*/30'), } if 'services.modules.seat' in INSTALLED_APPS: CELERYBEAT_SCHEDULE['run_seat_api_sync'] = { - 'task': 'services.modules.seat.tasks.SeatTasks.run_api_sync', + 'task': 'services.modules.seat.tasks.run_api_sync', 'schedule': crontab(minute='*/30'), }