diff --git a/app/primary_cron_job.py b/app/primary_cron_job.py index 453b2ab..bbb1746 100755 --- a/app/primary_cron_job.py +++ b/app/primary_cron_job.py @@ -421,7 +421,7 @@ def run_threaded(job_func): schedule.every(3).hours.do(run_threaded, run_press_releases).tag('press_release_job') -schedule.every(15).minutes.do(run_threaded, run_push_notifications).tag('push_notifications_job') +schedule.every(5).minutes.do(run_threaded, run_push_notifications).tag('push_notifications_job') schedule.every(30).minutes.do(run_threaded, run_options_stats).tag('options_stats_job') schedule.every(5).minutes.do(run_threaded, run_market_flow).tag('market_flow_job')