Just a heads up for anyone using hangfire, my umbraco dev site started crashing today when trying to run in VS, I eventually tracked down the problem to services.AddHangfireServer(); in my sartup.cs, commenting it out then allows umbraco to run.
To check I created a new .net core console app and installed hangfire in that, it also crashes as soon as the AddHangfireServer line is executed.
I'm assuming this is because of a windows update that was installed when I shut down lastnight, so will try uninstalling that when I've finished work to see if I can fix it.
Hangfire sudddenly started crashing in .netcore
Just a heads up for anyone using hangfire, my umbraco dev site started crashing today when trying to run in VS, I eventually tracked down the problem to
services.AddHangfireServer();
in my sartup.cs, commenting it out then allows umbraco to run.To check I created a new .net core console app and installed hangfire in that, it also crashes as soon as the AddHangfireServer line is executed.
I'm assuming this is because of a windows update that was installed when I shut down lastnight, so will try uninstalling that when I've finished work to see if I can fix it.
Same problem here.
(HangFire + Umb9) and with .net 6.0.10 runtime => FAILED
.net 6.0.9 runtime working well.
There was a thread on Twitter a few days ago relating to this with a solution:
https://twitter.com/markusjoha/status/1580126928945958912
An issue has been logged with Hangfire, see here:
https://github.com/HangfireIO/Hangfire/issues/2105
Hopefully that will help others out with the same issue.
Yep, worked for me.
is working on a reply...