Fix insta retrieve photo period on prod

remotes/origin/hasaccess
Ivlev Denis 8 years ago
parent f7f81e6e8b
commit 835f7ac022
  1. 3
      project/settings.py

@ -11,6 +11,7 @@ https://docs.djangoproject.com/en/2.0/ref/settings/
"""
import os
from celery.schedules import crontab
from collections import OrderedDict
from datetime import timedelta
@ -219,7 +220,7 @@ CELERY_TASK_SERIALIZER = 'json'
CELERY_BEAT_SCHEDULE = {
'retrieve_photos_from_instagram': {
'task': 'apps.content.tasks.retrieve_photos',
'schedule': timedelta(minutes=2),
'schedule': timedelta(minutes=2) if DEBUG else crontab(minute=0, hour=0),
'args': (),
},
}

Loading…
Cancel
Save