From 3e8e1faabcf704ef9787ed1b57bca50464c6ef06 Mon Sep 17 00:00:00 2001 From: Iurii Skliar Date: Mon, 27 Nov 2017 18:06:26 +0100 Subject: [PATCH] Fix Website Docs for Periodic jobs TimeZone --- website/source/api/json-jobs.html.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/website/source/api/json-jobs.html.md b/website/source/api/json-jobs.html.md index a0dfac87b..0090a7feb 100644 --- a/website/source/api/json-jobs.html.md +++ b/website/source/api/json-jobs.html.md @@ -198,7 +198,7 @@ The `Job` object supports the following keys: - `Enabled` - `Enabled` determines whether the periodic job will spawn child jobs. - - `time_zone` - Specifies the time zone to evaluate the next launch interval + - `TimeZone` - Specifies the time zone to evaluate the next launch interval against. This is useful when wanting to account for day light savings in various time zones. The time zone must be parsable by Golang's [LoadLocation](https://golang.org/pkg/time/#LoadLocation). The default is @@ -222,7 +222,8 @@ The `Job` object supports the following keys: ```json { "Periodic": { - "Spec": "*/15 - *" + "Spec": "*/15 - *", + "TimeZone": "Europe/Berlin", "SpecType": "cron", "Enabled": true, "ProhibitOverlap": true