Update comment on recurring-interval type maintenance

Co-authored-by: Frank Elsinga <frank@elsinga.de>
This commit is contained in:
John Campbell 2024-07-13 22:03:13 -04:00 committed by GitHub
parent 4750bd1e36
commit 7f64badb06
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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);