Sergey Odinokov

Results 247 comments of Sergey Odinokov
trafficstars

`RecurringJob.TriggerJob` method added instead, will be available in 1.7.31 in few moments.

Unfortunately this will break existing code, where multiple background job servers are started in the same application that's an existing use case. Different applications, different environments, as far as I...

Thanks for your work. Version 1.8.0 will add the Exception field to the Deleted state and will allow to specify continuations for the deleted state also (which will act as...

This could be caused by MySql extension, if it doesn't have a proper implementation for transactions and distributed locks.

I'm afraid that issue belongs more to NuGet than to Hangfire and present in other packages as well, for example see the following question on Stack Overflow: https://stackoverflow.com/questions/56727314/nuget-package-manager-does-not-install-package-with-highest-depencency-version There was...

Event-driven architecture for semaphores and mutexes requires the lock feature to be implemented in transaction scope (currently they are supported only on a connection level). Without this it will be...

There's no easy solution for now, and I doubt custom re-branding will be available for the dashboard in open-source version.

Could you show some records from these tables to understand what area/extension cause this? Key format and values should show the attribution.

Thanks for details. I see there are a lot of keys with the "console:" prefix that tells us there are problems with the https://github.com/pieceofsummer/Hangfire.Console community extension. Please submit an issue...

Behavior of recurring jobs is very similar to the behavior of .NET's `System.Threading.Timer` that's based on thread pool. When it's time to run a recurring job, a new background job...