Increase command timeout to 60s

This commit is contained in:
Chris Cheetham 2021-06-16 08:20:31 -04:00
Родитель b6f62b0c05
Коммит 98fdd02d5b
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -65,7 +65,7 @@ namespace Steeltoe.NetCoreTool.Template.Test.Utilities
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.BeginErrorReadLine();
var waitForExit = Task.Run(() => process.WaitForExit(timeoutMillis));