Commit abc7ecbc authored by Marc Gravell's avatar Marc Gravell

Should have included TP stats in the sleep-loop exit

parent ae742a61
...@@ -610,7 +610,7 @@ private async Task<bool> WaitAllIgnoreErrorsAsync(Task[] tasks, int timeoutMilli ...@@ -610,7 +610,7 @@ private async Task<bool> WaitAllIgnoreErrorsAsync(Task[] tasks, int timeoutMilli
Thread.Sleep(delay); Thread.Sleep(delay);
if (AllComplete(tasks)) if (AllComplete(tasks))
{ {
LogLocked(log, "Tasks completed in sleep-loop"); LogLockedWithThreadPoolStats(log, "Tasks completed in sleep-loop");
return true; return true;
} }
delay = (delay * 3) >> 1; delay = (delay * 3) >> 1;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment