refactor: increase max value
This commit is contained in:
@ -27,7 +27,7 @@ public class ScheduleController(ILogger<ScheduleController> logger, IOptionsSnap
|
|||||||
/// <param name="depth">The depth of the next tasks to retrieve.</param>
|
/// <param name="depth">The depth of the next tasks to retrieve.</param>
|
||||||
/// <returns>Cron expression and the list of next scheduled task dates.</returns>
|
/// <returns>Cron expression and the list of next scheduled task dates.</returns>
|
||||||
[HttpGet("CronUpdateSchedule")]
|
[HttpGet("CronUpdateSchedule")]
|
||||||
public ActionResult<CronUpdateScheduleResponse> CronUpdateSchedule([FromQuery][Range(0, 5)] int depth = 2)
|
public ActionResult<CronUpdateScheduleResponse> CronUpdateSchedule([FromQuery][Range(0, 10)] int depth = 5)
|
||||||
{
|
{
|
||||||
var cronExpression = CronExpression.Parse(config.Value.ScheduleSettings!.CronUpdateSchedule);
|
var cronExpression = CronExpression.Parse(config.Value.ScheduleSettings!.CronUpdateSchedule);
|
||||||
var nextTasks = config.Value.ScheduleSettings!.CronUpdateSkipDateList.GetNextTask(cronExpression, depth);
|
var nextTasks = config.Value.ScheduleSettings!.CronUpdateSkipDateList.GetNextTask(cronExpression, depth);
|
||||||
|
Reference in New Issue
Block a user