Hangfire
Hangfire copied to clipboard
An easy way to perform background job processing in .NET and .NET Core applications. No Windows Service or separate process required
Hello, I have problem with Hangfire dashboard returning error 500 for invalid routes. It throws following exception: >> System.InvalidOperationException: The request reached the end of the pipeline without executing the...
Hangfire MS SQL Server schema should use `datetime2` instead of `datetime`. This is really a minor issue in a sense. `datetime` data type is mostly deprecated, `datetime2 `does the job...
The `NextExecution` column is showing `X minutes ago` for future job execution time. It should be `in X minutes` 
I've setup a simple .netcore 3.1 web application, based on Ubuntu 16.04 Server with Mysql 8.0.25 and Hangfire 1.7.30 for scheduled activities. I'm actually struggling in understanding how scheduling activities...
Add options to Hangfire Dashboard to 1. Use the full screen width, 2. Display job arguments in all job lists, 3. Filter most job lists on a given search string,...
There is no option to fetch all jobs of a recurring job. I can fetch details of a single job GetMonitoringApi().JobDetails() Fetch recurring jobs ``` ((JobStorageConnection)_storage.GetConnection()).GetRecurringJobs(new List { "a", "b"...
Firstly - thanks for an awesome library! We're seeing an issue with Hangfire suddenly (in the last 24 hours) consuming a large amount of our database CPU. The queries that...
Hi. Can Dotnet 4.5 be removed from solution? It is not building in Visual Studio 2022
It could be really helpful while testing: you can inject your own `IClock` and control how jobs are executing.
I have followed the guide on https://docs.hangfire.io/en/latest/deployment-to-production/making-aspnet-app-always-running.html but still Hangfire stops after IIS app pool is recycled. I am trying it on Windows 10 IIS with ASP.NET Core 3.1. The...