Skip to content

Commit 54e09ac

Browse files
committed
Added webhook queue to the queues
1 parent 2f68757 commit 54e09ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lingarr.Server/Extensions/ServiceCollectionExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ private static void ConfigureHangfire(this WebApplicationBuilder builder)
196196
var tablePrefix = "_hangfire";
197197
builder.Services.AddHangfireServer(options =>
198198
{
199-
options.Queues = ["movies", "shows", "system", "translation", "default"];
199+
options.Queues = ["movies", "shows", "system", "translation", "webhook", "default"];
200200
options.WorkerCount =
201201
int.TryParse(Environment.GetEnvironmentVariable("MAX_CONCURRENT_JOBS"), out int maxConcurrentJobs)
202202
? maxConcurrentJobs

0 commit comments

Comments
 (0)