From 673687c02374c25b203e7491b52deed90b290783 Mon Sep 17 00:00:00 2001 From: MuslemRahimi Date: Thu, 17 Oct 2024 08:53:22 +0200 Subject: [PATCH] bugfixing --- app/primary_cron_job.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/primary_cron_job.py b/app/primary_cron_job.py index e767dc1..7dc5f9d 100755 --- a/app/primary_cron_job.py +++ b/app/primary_cron_job.py @@ -350,8 +350,6 @@ schedule.every().saturday.at("06:00").do(run_threaded, run_sentiment_analysis).t schedule.every().saturday.at("10:00").do(run_threaded, run_price_analysis).tag('price_analysis_job') -schedule.every(5).minutes.do(run_threaded, run_cron_market_movers).tag('market_movers_job') - schedule.every(30).minutes.do(run_threaded, run_dividend_list).tag('dividend_list_job') schedule.every(15).minutes.do(run_threaded, run_cron_market_news).tag('market_news_job') schedule.every(30).minutes.do(run_threaded, run_cron_industry).tag('industry_job')