increase timeout for remote deployer (#1001)

Turns out it takes a while to deploy to nano server
This commit is contained in:
Andrew Stanton-Nurse 2017-03-31 14:34:14 -07:00 committed by GitHub
parent b4b671556a
commit 915e984f32
1 changed files with 1 additions and 1 deletions

View File

@ -263,7 +263,7 @@ namespace Microsoft.AspNetCore.Server.IntegrationTesting
runScriptsOnRemoteServerProcess.StartAndCaptureOutAndErrToLogger(serverAction, Logger);
await processExited.Task.OrTimeout(TimeSpan.FromMinutes(1));
await processExited.Task.OrTimeout(TimeSpan.FromMinutes(5));
runScriptsOnRemoteServerProcess.WaitForExit((int)TimeSpan.FromMinutes(1).TotalMilliseconds);
if (runScriptsOnRemoteServerProcess.HasExited && runScriptsOnRemoteServerProcess.ExitCode != 0)