diff --git a/src/EventHub.BackgroundServices/Events/EventTimingChangeWorker.cs b/src/EventHub.BackgroundServices/Events/EventTimingChangeWorker.cs index 640f3b3..ee3f4ce 100644 --- a/src/EventHub.BackgroundServices/Events/EventTimingChangeWorker.cs +++ b/src/EventHub.BackgroundServices/Events/EventTimingChangeWorker.cs @@ -14,7 +14,12 @@ namespace EventHub.Events { public class EventTimingChangeWorker : AsyncPeriodicBackgroundWorkerBase { - public EventTimingChangeWorker(AbpAsyncTimer timer, IServiceScopeFactory serviceScopeFactory) : base(timer, serviceScopeFactory) + public EventTimingChangeWorker( + AbpAsyncTimer timer, + IServiceScopeFactory serviceScopeFactory + ) : base( + timer, + serviceScopeFactory) { Timer.Period = 60000; //1 minute }