Increase queue length (#27555)

This commit is contained in:
Jason Song
2023-10-10 18:47:49 +08:00
committed by GitHub
parent 3c131307ac
commit 2c7b6c378e
5 changed files with 5 additions and 5 deletions

View File

@ -30,7 +30,7 @@ func GetQueueSettings(rootCfg ConfigProvider, name string) (QueueSettings, error
queueSettingsDefault := QueueSettings{
Type: "level", // dummy, channel, level, redis
Datadir: "queues/common", // relative to AppDataPath
Length: 100, // queue length before a channel queue will block
Length: 100000, // queue length before a channel queue will block
QueueName: "_queue",
SetName: "_unique",