Removing timeout for dnu publish
Sometimes on slower machines that it takes more than this time especially when -no-source is turned on.
This commit is contained in:
parent
0ab04fd319
commit
0e9f876d4e
|
|
@ -90,7 +90,7 @@ namespace Microsoft.AspNet.Server.Testing
|
|||
};
|
||||
|
||||
var hostProcess = Process.Start(startInfo);
|
||||
hostProcess.WaitForExit(60 * 1000);
|
||||
hostProcess.WaitForExit();
|
||||
|
||||
if (hostProcess.ExitCode != 0)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue