disable place/event rebuild tasks, those should not be needed anymore

This commit is contained in:
j 2012-05-27 12:05:07 +00:00
commit 59f575d489
2 changed files with 4 additions and 0 deletions

View file

@ -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):