From b46bec1a7e017d92a5e599159e6428c3be8ae9a6 Mon Sep 17 00:00:00 2001 From: Suhas Joshi Date: Wed, 14 Jan 2015 16:09:07 -0800 Subject: [PATCH] Increase wait time for server to start --- test/E2ETests/Common/DeploymentUtility.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/E2ETests/Common/DeploymentUtility.cs b/test/E2ETests/Common/DeploymentUtility.cs index 1e2d82b723..1eed4d0b8f 100644 --- a/test/E2ETests/Common/DeploymentUtility.cs +++ b/test/E2ETests/Common/DeploymentUtility.cs @@ -201,7 +201,7 @@ namespace E2ETests var hostProcess = Process.Start(startInfo); logger.WriteInformation("Started {0}. Process Id : {1}", hostProcess.MainModule.FileName, hostProcess.Id); - Thread.Sleep(15 * 1000); + Thread.Sleep(25 * 1000); //Clear the appbase so that it does not create issues with successive runs Environment.SetEnvironmentVariable("KRE_APPBASE", string.Empty);