Commit: f062a46
Parent: 5095c32

Fix cron expression for cleanup job

Mårten Åsberg committed on 2026-05-14 at 19:36
src/Api/CleanupJob.cs +1 -1
diff --git a/src/Api/CleanupJob.cs b/src/Api/CleanupJob.cs
index bcc5ca6..170ea77 100644
@@ -32,6 +32,6 @@ public static class CleanupJobExtensions
public IServiceCollectionQuartzConfigurator AddCleanupJob() =>
quartz
.AddJob<CleanupJob>(CleanupJob.Key, options => options.StoreDurably())
.AddTrigger(options => options.ForJob(CleanupJob.Key).WithCronSchedule("H H * * * ?"));
.AddTrigger(options => options.ForJob(CleanupJob.Key).WithCronSchedule("0 0 * * * ?"));
}
}