forked from 0x2620/pandora
22 lines
509 B
Python
22 lines
509 B
Python
# -*- coding: utf-8 -*-
|
|
# vi:si:et:sw=4:sts=4:ts=4
|
|
|
|
from celery.task import task
|
|
|
|
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):
|
|
place = models.Place.objects.get(pk=id)
|
|
place.update_matches()
|
|
|