forked from 0x2620/pandora
disable place/event rebuild tasks, those should not be needed anymore
This commit is contained in:
parent
69b1e6c7b2
commit
59f575d489
2 changed files with 4 additions and 0 deletions
|
|
@ -9,12 +9,14 @@ from celery.schedules import crontab
|
|||
from models import Event
|
||||
|
||||
|
||||
'''
|
||||
@periodic_task(run_every=crontab(hour=7, minute=30), queue='encoding')
|
||||
def update_all_matches(**kwargs):
|
||||
ids = [e['id'] for e in Event.objects.all().values('id')]
|
||||
for i in ids:
|
||||
e = Event.objects.get(pk=i)
|
||||
e.update_matches()
|
||||
'''
|
||||
|
||||
@task(ignore_results=True, queue='default')
|
||||
def update_matches(eventId):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue