You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a simple scheduler that I'm loading from an SQL table (that resembles the Quartz records):
// Create, configure and start the scheduler.
this.scheduler = await this.schedulerFactory.GetScheduler(cancellationToken);
this.scheduler.JobFactory = this.jobFactory;
this.scheduler.ListenerManager.AddSchedulerListener(this.schedulerListener);
await this.scheduler.Start(cancellationToken).ConfigureAwait(false);
I've verified with logging that this code is only run once. I've verified with logging that the job is only running once.
The listener is a trivial implementation of an IScheduleListener:
I have a simple scheduler that I'm loading from an SQL table (that resembles the Quartz records):
I've verified with logging that this code is only run once. I've verified with logging that the job is only running once.
The listener is a trivial implementation of an IScheduleListener:
When I run this program, I get:
The listener task is getting called twice for every job I add and twice for every job that is deleted.
The text was updated successfully, but these errors were encountered: