🐛 Fix wrong queue name

This commit is contained in:
2025-08-24 13:19:39 +08:00
parent 7cb14940d9
commit d9a5fed77f
2 changed files with 4 additions and 6 deletions

View File

@@ -16,8 +16,8 @@ public class QueueBackgroundService(
)
: BackgroundService
{
private const string QueueName = "pusher.queue";
private const string QueueGroup = "pusher.workers";
public const string QueueName = "pusher.queue";
public const string QueueGroup = "pusher.workers";
private readonly int _consumerCount = configuration.GetValue<int?>("ConsumerCount") ?? Environment.ProcessorCount;
private readonly List<Task> _consumerTasks = [];