increase timeout for remote deployer (#1001)
Turns out it takes a while to deploy to nano server
This commit is contained in:
parent
b4b671556a
commit
915e984f32
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in New Issue