TODO: fix cron.

This commit is contained in:
Amirouche 2024-01-31 12:44:13 +01:00
parent 7967915b91
commit 3ca2c1f546

View file

@ -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()