From 06e36982bda6e1e6ae5253bbafe5639be548a41a Mon Sep 17 00:00:00 2001 From: Michael Schurter Date: Mon, 6 May 2019 14:52:44 -0700 Subject: [PATCH] docs: fix default restart values --- website/source/docs/job-specification/restart.html.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/website/source/docs/job-specification/restart.html.md b/website/source/docs/job-specification/restart.html.md index 467687728..7fefe8043 100644 --- a/website/source/docs/job-specification/restart.html.md +++ b/website/source/docs/job-specification/restart.html.md @@ -60,18 +60,18 @@ defaults by job type: ```hcl restart { - attempts = 15 + attempts = 3 delay = "15s" - interval = "168h" + interval = "24h" mode = "fail" } ``` -- The default non-batch restart policy is: +- The default service and system job restart policy is: ```hcl restart { - interval = "1m" + interval = "30m" attempts = 2 delay = "15s" mode = "fail"