diff --git a/nomad/resource_job_test.go b/nomad/resource_job_test.go index d004eccd..76ee378c 100644 --- a/nomad/resource_job_test.go +++ b/nomad/resource_job_test.go @@ -2991,12 +2991,12 @@ job "foo-service-with-deployment" { update { min_healthy_time = "1s" healthy_deadline = "2s" - progress_deadline = "3s" + progress_deadline = "10s" } task "sleep" { - driver = "raw_exec" + driver = "exec" config { - command = "sleep" + command = "/bin/sleep" args = ["3600"] } } diff --git a/scripts/getnomad.sh b/scripts/getnomad.sh index 8df34d50..e45c0e6a 100755 --- a/scripts/getnomad.sh +++ b/scripts/getnomad.sh @@ -5,7 +5,7 @@ set -e -NOMAD_VERSION=1.5.0 +NOMAD_VERSION='1.6.0-beta.1' if [[ -n "$NOMAD_LICENSE" || -n "$NOMAD_LICENSE_PATH" ]]; then NOMAD_VERSION=${NOMAD_VERSION}+ent fi