Umesh Shende

Results 3 comments of Umesh Shende

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). }); ```