From 3ca2c1f54623083301b50e664018013e00b9bfce Mon Sep 17 00:00:00 2001 From: Amirouche Date: Wed, 31 Jan 2024 12:44:13 +0100 Subject: [PATCH] TODO: fix cron. --- api/crons/core_dynamic_crons.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/api/crons/core_dynamic_crons.py b/api/crons/core_dynamic_crons.py index f1bc87929..9703ce256 100644 --- a/api/crons/core_dynamic_crons.py +++ b/api/crons/core_dynamic_crons.py @@ -5,23 +5,23 @@ from chalicelib.core import telemetry from chalicelib.core import weekly_report, jobs, health -async def run_scheduled_jobs() -> None: +def run_scheduled_jobs() -> None: jobs.execute_jobs() -async def weekly_report_cron() -> None: +def weekly_report_cron() -> None: weekly_report.cron() -async def telemetry_cron() -> None: +def telemetry_cron() -> None: telemetry.compute() -async def health_cron() -> None: +def health_cron() -> None: health.cron() -async def weekly_health_cron() -> None: +def weekly_health_cron() -> None: health.weekly_cron()