79780077

Date: 2025-10-01 13:01:44
Score: 1.5
Natty:
Report link

this error is happening because your Hangfire Dashboard is getting confused. You Likely have a [JobSource] attribute on a class, which automatically registers every method as a job. Where you also potentially have manual [Job("...")] attributes on one or more of your methods. This results in those methods having two names, which causes the dashboard to crash when it tries to display them.

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Byte