Skip to content

Commit

Permalink
increase timeout to 10s
Browse files Browse the repository at this point in the history
  • Loading branch information
rkm committed Jan 7, 2025
1 parent c74da02 commit e9c22f2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public SmiCtpAnonymiser(GlobalOptions globalOptions)
while (!ts.IsCancellationRequested && line != null);
});

if (!readyTask.Wait(TimeSpan.FromSeconds(5)) || !ready)
if (!readyTask.Wait(TimeSpan.FromSeconds(10)) || !ready)
{
ts.Cancel();
_ctpProcess.Kill();
Expand Down

0 comments on commit e9c22f2

Please sign in to comment.