Skip to content

Commit

Permalink
Update WindowsStrategy.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
JusterZhu committed Nov 16, 2023
1 parent 4095c5b commit 66205c0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ private void WaitForProcessToStart(string applicationPath, TimeSpan timeout, Act
var startTime = DateTime.UtcNow;
while (DateTime.UtcNow - startTime < timeout)
{
Thread.Sleep(2 * 1000);
Thread.Sleep(10 * 1000);
if (!process.HasExited)
{
callbackAction?.Invoke(applicationPath);
Expand Down

0 comments on commit 66205c0

Please sign in to comment.