diff --git a/nomad/plan_apply_test.go b/nomad/plan_apply_test.go index 49733f19313..e623509842a 100644 --- a/nomad/plan_apply_test.go +++ b/nomad/plan_apply_test.go @@ -235,7 +235,7 @@ func TestPlanApply_applyPlan(t *testing.T) { func TestPlanApply_applyPlanWithNormalizedAllocs(t *testing.T) { t.Parallel() s1 := TestServer(t, func(c *Config) { - c.Build = "0.9.1" + c.Build = "0.9.2" }) defer s1.Shutdown() testutil.WaitForLeader(t, s1.RPC) diff --git a/nomad/util.go b/nomad/util.go index d4d8e0a20e7..ccd4504af05 100644 --- a/nomad/util.go +++ b/nomad/util.go @@ -17,7 +17,7 @@ import ( // MinVersionPlanNormalization is the minimum version to support the // normalization of Plan in SubmitPlan, and the denormalization raft log entry committed // in ApplyPlanResultsRequest -var MinVersionPlanNormalization = version.Must(version.NewVersion("0.9.1")) +var MinVersionPlanNormalization = version.Must(version.NewVersion("0.9.2")) // ensurePath is used to make sure a path exists func ensurePath(path string, dir bool) error { diff --git a/nomad/worker_test.go b/nomad/worker_test.go index a03e739bfc3..4bc8628aff6 100644 --- a/nomad/worker_test.go +++ b/nomad/worker_test.go @@ -396,7 +396,7 @@ func TestWorker_SubmitPlanNormalizedAllocations(t *testing.T) { s1 := TestServer(t, func(c *Config) { c.NumSchedulers = 0 c.EnabledSchedulers = []string{structs.JobTypeService} - c.Build = "0.9.1" + c.Build = "0.9.2" }) defer s1.Shutdown() testutil.WaitForLeader(t, s1.RPC)