Migrated to Feature only library reference
continuous-integration/drone/pr Build is passing

This commit is contained in:
Khwezi Mngoma
2026-05-14 17:47:00 +02:00
parent 88e70b1e81
commit 8fa3ac7546
3 changed files with 13 additions and 12 deletions
+3 -3
View File
@@ -1,5 +1,5 @@
using LiteCharms.Abstractions;
using LiteCharms.Features.Notifications.Events;
using LiteCharms.Features.Quartz.Abstractions;
using LiteCharms.Features.Shop.Notifications.Events;
namespace LiteCharmsScheduler.Workers
{
@@ -7,7 +7,7 @@ namespace LiteCharmsScheduler.Workers
{
protected override async Task ExecuteAsync(CancellationToken stoppingToken)
{
await jobOrchestrator.ScheduleAsync(ProcessEmailNotificationsEvent.Create(), "0 1 * * * ?", stoppingToken);
await jobOrchestrator.ScheduleAsync(ProcessEmailNotificationsEvent.Create(), "0 0/1 * * * ?", stoppingToken);
logger.LogInformation("Startup jobs scheduled");
}