From 0e9f876d4e890ec1a43c621409371d473b25e7ca Mon Sep 17 00:00:00 2001 From: Praburaj Date: Mon, 20 Apr 2015 11:11:00 -0700 Subject: [PATCH] Removing timeout for dnu publish Sometimes on slower machines that it takes more than this time especially when -no-source is turned on. --- .../Deployers/ApplicationDeployer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Microsoft.AspNet.Server.Testing/Deployers/ApplicationDeployer.cs b/src/Microsoft.AspNet.Server.Testing/Deployers/ApplicationDeployer.cs index 94c3d4a0c7..409c5b6887 100644 --- a/src/Microsoft.AspNet.Server.Testing/Deployers/ApplicationDeployer.cs +++ b/src/Microsoft.AspNet.Server.Testing/Deployers/ApplicationDeployer.cs @@ -90,7 +90,7 @@ namespace Microsoft.AspNet.Server.Testing }; var hostProcess = Process.Start(startInfo); - hostProcess.WaitForExit(60 * 1000); + hostProcess.WaitForExit(); if (hostProcess.ExitCode != 0) {