Compare commits

..

No commits in common. "fe14f0a94c99e8d3e059c9e77543d37d2fe5efd2" and "a3a62e1d8306c7aeb5a4e80ce5375d636d0eac07" have entirely different histories.

2 changed files with 4 additions and 3 deletions

View file

@ -242,7 +242,8 @@ public class SpeedtestService(Config config, Func<SpeedTestResult, Task> updateF
} }
//Retest the failed part //Retest the failed part
if (lstFailed.Count > 0) var pageSizeNext = pageSize / 2;
if (lstFailed.Count > 0 && pageSizeNext > 0)
{ {
if (_lstExitLoop.Any(p => p == exitLoopKey) == false) if (_lstExitLoop.Any(p => p == exitLoopKey) == false)
{ {
@ -252,7 +253,7 @@ public class SpeedtestService(Config config, Func<SpeedTestResult, Task> updateF
await UpdateFunc("", string.Format(ResUI.SpeedtestingTestFailedPart, lstFailed.Count)); await UpdateFunc("", string.Format(ResUI.SpeedtestingTestFailedPart, lstFailed.Count));
await RunUdpTestAsync(lstFailed, exitLoopKey); await RunUdpTestBatchAsync(lstFailed, exitLoopKey, pageSizeNext);
} }
} }

View file

@ -94,7 +94,7 @@ public abstract class UdpService
} }
catch catch
{ {
if (attempt == 1 && roundTripTime == TimeSpan.MaxValue) if (attempt == 1)
{ {
throw; throw;
} }