From 65f1f2cccd2bf4b52a6490c8951c0ca17b39b559 Mon Sep 17 00:00:00 2001 From: Nick Cabatoff Date: Mon, 29 Mar 2021 09:51:19 -0400 Subject: [PATCH] Use a 15s instead of 10s timeout on this test. The `default` subtest takes 9s on my laptop, so pad that for CI. (#11221) --- command/agent_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/command/agent_test.go b/command/agent_test.go index 1ce2e84dbb..a9cfac5338 100644 --- a/command/agent_test.go +++ b/command/agent_test.go @@ -1415,7 +1415,7 @@ vault { // the temp dir before Agent has had time to render and will // likely fail the test tick := time.Tick(1 * time.Second) - timeout := time.After(10 * time.Second) + timeout := time.After(15 * time.Second) var err error for { select {