Merge pull request #5655 from hashicorp/docs-restarts

docs: fix default restart values
This commit is contained in:
Michael Schurter 2019-05-07 10:43:53 -07:00 committed by GitHub
commit d2742643fd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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"