From d4337d25c31a076ef877608eaec167c5af4a1be4 Mon Sep 17 00:00:00 2001 From: Preetha Appan Date: Mon, 5 Feb 2018 17:22:13 -0600 Subject: [PATCH] Fixes nomad validate that broke when changing default values in example.nomad --- command/init.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/command/init.go b/command/init.go index 28b341e88..3b6ca2dd0 100644 --- a/command/init.go +++ b/command/init.go @@ -184,7 +184,7 @@ job "example" { restart { # The number of attempts to run the job within the specified interval. attempts = 2 - interval = "15s" + interval = "30m" # The "delay" parameter specifies the duration to wait before restarting # a task after it has failed.