From 840c095fe9902639466966a00f06f5b567869796 Mon Sep 17 00:00:00 2001 From: Clinton Wolfe Date: Wed, 11 Sep 2019 12:49:09 -0400 Subject: [PATCH] Add a sleep after starting vault to ensure it is up prior to seeding Signed-off-by: Clinton Wolfe --- Rakefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Rakefile b/Rakefile index a6a2495..5c6c853 100644 --- a/Rakefile +++ b/Rakefile @@ -60,6 +60,8 @@ namespace(:test) do pid = spawn(ENV, "test/integration/support/vault server -dev &") Process.detach(pid) end + puts "Waiting 3 sec for vault to warm up..." + sleep(3) end task(:seed_vault) do