From 658646a22e43ec86df9910030aac87fc0331911f Mon Sep 17 00:00:00 2001 From: donnerbart <4196298+Donnerbart@users.noreply.github.com> Date: Mon, 18 Oct 2021 14:49:10 +0200 Subject: [PATCH] Add note to start/stop documentation to quote timestamp values if needed Signed-off-by: donnerbart <4196298+Donnerbart@users.noreply.github.com> --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 9f052b2..cdab019 100644 --- a/README.md +++ b/README.md @@ -50,6 +50,8 @@ level of precision is better left to other tools. stop: 6:00 AM ``` + **Note: YAML parsers like PyYAML may parse time values in the 24h format as integers, not strings (e.g. `19:00` is parsed as `1140`). If you pre-process your pipeline configuration with such a parser this might trigger a marshaling error. In that case you can quote your `start` and `stop` values, so they will be correctly treated as string.** + * `days`: *Optional.* Limit the creation of new time versions to the specified day(s). Supported days are: `Sunday`, `Monday`, `Tuesday`, `Wednesday`, `Thursday`, `Friday` and `Saturday`.