We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98f7255 commit f84d3f1Copy full SHA for f84d3f1
1 file changed
test/SeqCli.EndToEnd/Support/CaptiveProcess.cs
@@ -111,11 +111,11 @@ public int WaitForExit(TimeSpan? timeout = null)
111
112
if (_captureOutput)
113
{
114
- if (!_outputComplete.WaitOne(TimeSpan.FromSeconds(1)))
115
- throw new IOException("STDOUT did not complete in the fixed 1 second window.");
+ if (!_outputComplete.WaitOne(TimeSpan.FromSeconds(5)))
+ throw new IOException("STDOUT did not complete in the fixed 5-second window.");
116
117
- if (!_errorComplete.WaitOne(TimeSpan.FromSeconds(1)))
118
- throw new IOException("STDERR did not complete in the fixed 1 second window.");
+ if (!_errorComplete.WaitOne(TimeSpan.FromSeconds(5)))
+ throw new IOException("STDERR did not complete in the fixed 5-second window.");
119
}
120
121
return _process.ExitCode;
0 commit comments