Commit 3e8e1faa authored by Iurii Skliar's avatar Iurii Skliar
Browse files

Fix Website Docs for Periodic jobs TimeZone

parent 0e255b2b
Showing with 3 additions and 2 deletions
+3 -2
......@@ -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
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment