fix pathing bug

This commit is contained in:
辉鸭蛋 2024-12-31 00:44:27 +08:00
parent 71fa4eaf3a
commit bfeaa1b14a

View File

@ -202,11 +202,25 @@ public class PathExecutor
catch (NormalEndException normalEndException)
{
Logger.LogInformation(normalEndException.Message);
throw;
if (RunnerContext.Instance.IsContinuousRunGroup)
{
throw;
}
else
{
break;
}
}
catch (TaskCanceledException e)
{
throw;
if (RunnerContext.Instance.IsContinuousRunGroup)
{
throw;
}
else
{
break;
}
}
catch (RetryException retryException)
{