diff --git a/server/model/maintenance.js b/server/model/maintenance.js index 6eb5273b8..468cb2c4a 100644 --- a/server/model/maintenance.js +++ b/server/model/maintenance.js @@ -411,7 +411,8 @@ class Maintenance extends BeanModel { } else if (!this.strategy.startsWith("recurring-")) { this.cron = ""; } else if (this.strategy === "recurring-interval") { - this.cron = "* * * * *"; // Because it is interval, it will be calculated in the run function + // For intervals, the pattern is calculated in the run function as the interval-option is set + this.cron = "* * * * *"; this.duration = this.calcDuration(); log.debug("maintenance", "Cron: " + this.cron); log.debug("maintenance", "Duration: " + this.duration);