forked from 0x2620/pandora
rate limit user cronjob
This commit is contained in:
parent
5cf7c4268a
commit
cc00510f5d
1 changed files with 4 additions and 1 deletions
|
@ -8,15 +8,18 @@ from datetime import timedelta
|
|||
from six.moves import zip_longest
|
||||
from celery.task import task, periodic_task
|
||||
|
||||
from app.utils import limit_rate
|
||||
from app.models import Settings
|
||||
from .statistics import Statistics
|
||||
|
||||
@periodic_task(run_every=timedelta(hours=1), queue='encoding')
|
||||
def cronjob(**kwargs):
|
||||
if limit_rate('user.tasks.cronjob', 30 * 60):
|
||||
update_statistics()
|
||||
|
||||
def update_statistics():
|
||||
from . import models
|
||||
|
||||
def chunker(iterable, chunksize, filler):
|
||||
return zip_longest(*[iter(iterable)]*chunksize, fillvalue=filler)
|
||||
|
||||
|
|
Loading…
Reference in a new issue