From a20253a62de3a19da6d5394567baafe51ff85808 Mon Sep 17 00:00:00 2001 From: Engincan VESKE <43685404+EngincanV@users.noreply.github.com> Date: Wed, 9 Nov 2022 15:25:35 +0300 Subject: [PATCH] Update Background-Jobs-Hangfire.md --- docs/en/Background-Jobs-Hangfire.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/en/Background-Jobs-Hangfire.md b/docs/en/Background-Jobs-Hangfire.md index 4ee58d84ef..a2770bc1fe 100644 --- a/docs/en/Background-Jobs-Hangfire.md +++ b/docs/en/Background-Jobs-Hangfire.md @@ -75,8 +75,8 @@ After you have installed these NuGet packages, you need to configure your projec // ... others - app.UseHangfireDashboard(); - + app.UseHangfireDashboard(); //should add to the request pipeline before the app.UseConfiguredEndpoints() + app.UseConfiguredEndpoints(); } ````