Increase command timeout to 60s
This commit is contained in:
Родитель
b6f62b0c05
Коммит
98fdd02d5b
|
@ -65,7 +65,7 @@ namespace Steeltoe.NetCoreTool.Template.Test.Utilities
|
||||||
throw new Exception($"'{command}' failed to start: {e.Message}");
|
throw new Exception($"'{command}' failed to start: {e.Message}");
|
||||||
}
|
}
|
||||||
|
|
||||||
const int timeoutMillis = 10 /* 10s */ * 1000 /* 1000ms/s */;
|
const int timeoutMillis = 60 /* 60s */ * 1000 /* 1000ms/s */;
|
||||||
process.BeginOutputReadLine();
|
process.BeginOutputReadLine();
|
||||||
process.BeginErrorReadLine();
|
process.BeginErrorReadLine();
|
||||||
var waitForExit = Task.Run(() => process.WaitForExit(timeoutMillis));
|
var waitForExit = Task.Run(() => process.WaitForExit(timeoutMillis));
|
||||||
|
|
Загрузка…
Ссылка в новой задаче