Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Linearly scale wait time
  • Loading branch information
agocke committed Oct 26, 2021
commit 633ca7330b4974d7275de656f16c76f877f01e64
4 changes: 2 additions & 2 deletions src/installer/tests/TestUtils/Command.cs
Original file line number Diff line number Diff line change
Expand Up @@ -206,9 +206,9 @@ public Command Start()
Process.Start();
break;
}
catch (Win32Exception e) when (i < 3 && e.Message.Contains("Text file busy"))
catch (Win32Exception e) when (i < 4 && e.Message.Contains("Text file busy"))
{
Thread.Sleep(50);
Thread.Sleep(i * 20);
}
}

Expand Down