From dd9c7e97e4a8e72cd9db3f6f2ab2a665527d772f Mon Sep 17 00:00:00 2001 From: Taras Madan Date: Mon, 9 Sep 2024 16:15:37 +0200 Subject: dashboard/app: fix cron schedule It fixes the "INVALID_ARGUMENT: Cron jobs only support Groc format for schedule." error. --- dashboard/app/cron.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboard/app/cron.yaml b/dashboard/app/cron.yaml index a34d9af9e..039c67d48 100644 --- a/dashboard/app/cron.yaml +++ b/dashboard/app/cron.yaml @@ -21,7 +21,7 @@ cron: target: ah-builtin-python-bundle # Update quarter coverage numbers every week. - url: /cron/batch_coverage?quarters=true&steps=2 - schedule: every sunday + schedule: every sunday 00:00 # Update other coverage numbers every day. - url: /cron/batch_coverage?days=true&months=true&steps=10 schedule: every 24 hours -- cgit mrf-deployment