From 7c9863ccb0bf8e7db593acb5c2f5f16fc85a36ba Mon Sep 17 00:00:00 2001 From: James Bardin Date: Wed, 15 Mar 2017 12:02:28 -0400 Subject: [PATCH] fix another hot lop in tests Found another test spinlock. Slow it down to prevent it from blocking the runtime scheduler. --- terraform/context_apply_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/terraform/context_apply_test.go b/terraform/context_apply_test.go index 0ad2f3148d..afe2f85a71 100644 --- a/terraform/context_apply_test.go +++ b/terraform/context_apply_test.go @@ -1740,6 +1740,7 @@ func TestContext2Apply_cancel(t *testing.T) { if ctx.sh.Stopped() { break } + time.Sleep(10 * time.Millisecond) } }