mirror of
https://github.com/Prowlarr/Prowlarr
synced 2025-12-25 09:54:11 +01:00
Default to 3 task threads like Sonarr/Lidarr
This commit is contained in:
parent
8f0c872873
commit
6c4da0989d
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue