Adjust cron expression and config comments.

This commit is contained in:
Logan Gorence
2021-12-24 22:10:10 +00:00
parent 767faba8d8
commit e10fa42c68
2 changed files with 6 additions and 3 deletions

View File

@ -29,7 +29,9 @@ class BackupFeature : Feature() {
registerCommandExecutor("fbackup", BackupCommand(plugin, backupPath, config, s3Client))
if (config.schedule.cron.isNotEmpty()) {
scheduleId = scheduler.cron("${config.schedule.cron} ?") {
// Assume user never wants to modify second. I'm not sure why this is enforced in Quartz.
val expr = "0 ${config.schedule.cron}"
scheduleId = scheduler.cron(expr) {
plugin.server.scheduler.runTask(plugin) { ->
plugin.server.dispatchCommand(plugin.server.consoleSender, "fbackup")
}