icsharp / Hangfire.RecurringJobExtensions

Extensions for Hangfire to build RecurringJob automatically
MIT License
181 stars 36 forks source link

Jobs getting enqueued but not executed #10

Open konarpriyanku opened 5 years ago

konarpriyanku commented 5 years ago

for some reason my jobs are getting enqueued but not getting executed image

konarpriyanku commented 5 years ago

image

huiji1990 commented 5 years ago

for some reason my jobs are getting enqueued but not getting executed image

Hangfire Server start with only one default queue, you need add queue "jobs" to ServerOptions.

app.UseHangfireServer(new BackgroundJobServerOptions { Queues = new[] { "default", "apis", "jobs" } });