Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. CELERYBEAT_SCHEDULE = {
  2. 'periodic_send_notification_reminders': {
  3. 'task': 'core.cron.periodic_send_notification_reminders',
  4. 'schedule': timedelta(minutes=30),
  5. },
  6. 'add_drive_file_to_queue': {
  7. 'task': 'core.cron.add_drive_file_to_queue',
  8. 'schedule': timedelta(seconds=5),
  9. },
  10. 'download_drive_file': {
  11. 'task': 'core.cron.download_drive_file',
  12. 'schedule': timedelta(seconds=10),
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement