Change 1hr to 1h on reschedule doc as 1hr is not supported by nomad

This commit is contained in:
Matthieu Antoine
2018-11-02 15:32:43 +01:00
parent 11a64f1332
commit f40c7e8d49

View File

@@ -36,7 +36,7 @@ job "docs" {
group "example" {
reschedule {
attempts = 15
interval = "1hr"
interval = "1h"
delay = "30s"
delay_function = "exponential"
max_delay = "120s"
@@ -105,7 +105,7 @@ defaults by job type:
reschedule {
delay = "30s"
delay_function = "exponential"
max_delay = "1hr"
max_delay = "1h"
unlimited = true
}
```