Fix celerybeat task in ts3 config. (#998)

This commit is contained in:
colcrunch 2018-03-22 15:43:50 -04:00 committed by Adarnof
parent ad79b4f77c
commit 1fc71a0738

View File

@ -23,7 +23,7 @@ In your auth project's settings file, do the following:
TEAMSPEAK3_PUBLIC_URL = '' TEAMSPEAK3_PUBLIC_URL = ''
CELERYBEAT_SCHEDULE['run_ts3_group_update'] = { CELERYBEAT_SCHEDULE['run_ts3_group_update'] = {
'task': 'services.modules.teamspeak3.tasks.run_ts3_group_update', 'task': 'allianceauth.services.modules.teamspeak3.tasks.run_ts3_group_update',
'schedule': crontab(minute='*/30'), 'schedule': crontab(minute='*/30'),
} }