fix: finish chaining

This commit is contained in:
Guillermo Marcel 2025-03-28 19:55:38 -03:00
parent ba1021c5e6
commit 85ac367e0c

View File

@ -79,6 +79,7 @@ public class AutoScanApp
await _scheduler.ScheduleJob(downloaderJob, trigger, cancellationToken);
await _scheduler.AddJob(scannerJob, false, true, cancellationToken);
await _scheduler.AddJob(cleanJob, false, true, cancellationToken);
_logger.LogDebug("Scheduled job successfully!");
}