jawabuu commented on issue #13124:
URL: https://github.com/apache/superset/issues/13124#issuecomment-779232417


   Managed to find these from github search
   
   ```
   from celery.schedules import crontab
   CELERYBEAT_SCHEDULE = {
             'email_reports.schedule_hourly': {
                 'task': 'email_reports.schedule_hourly',
                 'schedule': crontab(minute='*/59'),
             },
             'alerts.schedule_check': {
               'task': 'alerts.schedule_check',
               'schedule': crontab(minute='*/4'')
             },
             'reports.scheduler': {
               'task': 'reports.scheduler',
               'schedule': crontab(minute='*/5'),
             },
             'reports.prune_log': {
                 'task': 'reports.prune_log',
                 'schedule': crontab(minute=0, hour=0),
             },
         }
   ```


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to