Hangfire.RecurringJobExtensions icon indicating copy to clipboard operation
Hangfire.RecurringJobExtensions copied to clipboard

Jobs getting enqueued but not executed

Open konarpriyanku opened this issue 7 years ago • 2 comments

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

konarpriyanku avatar Oct 24 '18 06:10 konarpriyanku

image

konarpriyanku avatar Oct 24 '18 06:10 konarpriyanku

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" } });

huiji1990 avatar Nov 06 '18 07:11 huiji1990