Refactor LeaveProcessJobStatusRepository methods and update Hangfire configuration for improved job processing

This commit is contained in:
Suphonchai Phoonsawat 2026-03-30 12:08:30 +07:00
parent 8732c34564
commit 3dee5f7166
4 changed files with 25 additions and 16 deletions

View file

@ -131,7 +131,7 @@ var builder = WebApplication.CreateBuilder(args);
{
options.ServerName = "Insignia-Server"; // ← ระบุชื่อ server
options.WorkerCount = 5; // ←
options.Queues = new[] { "insignia" }; // ← worker จะรันเฉพาะ queue "insignia"
options.Queues = new[] { "insignia","default" }; // ← worker จะรันเฉพาะ queue "insignia"
});