Hangfire.RecurringJobExtensions
Hangfire.RecurringJobExtensions copied to clipboard
Jobs getting enqueued but not executed
for some reason my jobs are getting enqueued but not getting executed


for some reason my jobs are getting enqueued but not getting executed
Hangfire Server start with only one default queue, you need add queue "jobs" to ServerOptions.
app.UseHangfireServer(new BackgroundJobServerOptions { Queues = new[] { "default", "apis", "jobs" } });