diff options
| author | Taras Madan <tarasmadan@google.com> | 2024-09-09 16:15:37 +0200 |
|---|---|---|
| committer | Taras Madan <tarasmadan@google.com> | 2024-09-09 14:34:59 +0000 |
| commit | dd9c7e97e4a8e72cd9db3f6f2ab2a665527d772f (patch) | |
| tree | 60dcf8649021f233eedd14490ac1e9d69c3c2f44 | |
| parent | ad6b666d49906bc961adba5801cc0f94c3e7c811 (diff) | |
dashboard/app: fix cron schedule
It fixes the "INVALID_ARGUMENT: Cron jobs only support Groc format for schedule." error.
| -rw-r--r-- | dashboard/app/cron.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
