Umesh Shende
Umesh Shende
Any update on this im facing same issue.
This issue #332 may resolve your problem.
Yes, Found the solution reduced the default queueing time 15 seconds to 5seconds ``` GlobalConfiguration.Configuration.UseSqlServerStorage(ConfigurationManager.ConnectionStrings["db_connection"].ConnectionString, new Hangfire.SqlServer.SqlServerStorageOptions { QueuePollInterval = TimeSpan.FromSeconds(5) }); app.UseHangfireServer(new BackgroundJobServerOptions() { SchedulePollingInterval = TimeSpan.FromSeconds(5). }); ```