From 1cfef83302acb2fb0f63e740c8ad8f7575e0b130 Mon Sep 17 00:00:00 2001 From: Preetha Appan Date: Thu, 3 Jan 2019 11:22:21 -0600 Subject: [PATCH] Increase timeout in e2e test --- e2e/e2eutil/utils.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2e/e2eutil/utils.go b/e2e/e2eutil/utils.go index e25734a13..87d8d6df4 100644 --- a/e2e/e2eutil/utils.go +++ b/e2e/e2eutil/utils.go @@ -50,7 +50,7 @@ func RegisterAndWaitForAllocs(f *framework.F, nomadClient *api.Client, jobFile s // Look for allocations allocs, _, _ := jobs.Allocations(*job.ID, false, nil) return allocs - }, 10*time.Second, time.Second).ShouldNot(BeEmpty()) + }, 20*time.Second, time.Second).ShouldNot(BeEmpty()) allocs, _, err := jobs.Allocations(*job.ID, false, nil) require.Nil(err)