Default to 3 task threads like Sonarr/Lidarr

This commit is contained in:
Qstick 2020-12-29 23:14:30 -05:00
parent 8f0c872873
commit 6c4da0989d

View file

@ -13,7 +13,7 @@ public class CommandExecutor : IHandle<ApplicationStartedEvent>,
{
private const int THREAD_UPPER_BOUND = 10;
private const int THREAD_LOWER_BOUND = 2;
private const int THREAD_LIMIT = 2;
private const int THREAD_LIMIT = 3;
private readonly Logger _logger;
private readonly IServiceFactory _serviceFactory;