Correct main character reset on token invalidation.

Correct interpretation of missing SERVICES_MIGRATED setting.
Remove legacy api sync celerybeat scheduled task.
This commit is contained in:
Adarnof
2017-06-13 20:34:39 -04:00
parent 7ab88dd663
commit 23bfc3d34a
3 changed files with 6 additions and 11 deletions

View File

@@ -620,9 +620,3 @@ if 'services.modules.teamspeak3' in INSTALLED_APPS:
'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.run_api_sync',
'schedule': crontab(minute='*/30'),
}