Hi Guys,
I have enabled Hangfire in my project.
I also setup a job as per below. https://aspnetboilerplate.com/Pages/Documents/Background-Jobs-And-Workers#background-workers
The job is working fine, however, I cant see logs anywhere. Its not visible in Hangfire UI.
Is there anything else that needs to be done?
Regards, Vikas
4 Answer(s)
-
0
Have you integrated hangfire? https://aspnetboilerplate.com/Pages/Documents/Hangfire-Integration
-
0
Hi,
I have done the integration.
Background jobs are showing up in hangfire. However, the background worker is not showing up under Recurring Jobs.
Regards,, Vikas
-
0
Hangfire does not handle background worker.
ABP's background worker systems are simple. It does not have a schedule system, except for periodic running workers as demonstrated above. If you need more advanced scheduling features, we suggest you check out Quartz or another library.
see: https://aspnetboilerplate.com/Pages/Documents/Background-Jobs-And-Workers#advanced-scheduling
-
0
Thanks for confirming, Will check.