From 39d534ab38b18d7d76d0a68fc1f2630b7314a7aa Mon Sep 17 00:00:00 2001 From: Whit Waldo Date: Mon, 16 Sep 2024 14:08:09 -0500 Subject: [PATCH] Valid values are 0-6, not 0-7 Signed-off-by: Whit Waldo --- daprdocs/content/en/reference/api/jobs_api.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daprdocs/content/en/reference/api/jobs_api.md b/daprdocs/content/en/reference/api/jobs_api.md index 2da463ae575..ac289b85dba 100644 --- a/daprdocs/content/en/reference/api/jobs_api.md +++ b/daprdocs/content/en/reference/api/jobs_api.md @@ -43,7 +43,7 @@ Parameter | Description Systemd timer style cron accepts 6 fields: seconds | minutes | hours | day of month | month | day of week -0-59 | 0-59 | 0-23 | 1-31 | 1-12/jan-dec | 0-7/sun-sat +0-59 | 0-59 | 0-23 | 1-31 | 1-12/jan-dec | 0-6/sun-sat "0 30 * * * *" - every hour on the half hour "0 15 3 * * *" - every day at 03:15