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):
|
||||
|
|
|
@ -8,12 +8,14 @@ from celery.schedules import crontab
|
|||
import models
|
||||
|
||||
|
||||
'''
|
||||
@periodic_task(run_every=crontab(hour=6, minute=30), queue='encoding')
|
||||
def update_all_matches(**kwargs):
|
||||
ids = [p['id'] for p in models.Place.objects.all().values('id')]
|
||||
for i in ids:
|
||||
p = models.Place.objects.get(pk=i)
|
||||
p.update_matches()
|
||||
'''
|
||||
|
||||
@task(ignore_results=True, queue='default')
|
||||
def update_matches(id):
|
||||
|
|
Loading…
Reference in a new issue