We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35cf9df commit 7246f1aCopy full SHA for 7246f1a
1 file changed
src/TTX.Infrastructure/Twitch/Chat/BotContainer.cs
@@ -8,7 +8,7 @@ public class BotContainer(IServiceScopeFactory _scopeFactory)
8
public event EventHandler<Message>? OnMessage;
9
private readonly List<TwitchBot> _bots = [];
10
public readonly List<Task> RunTasks = [];
11
- private const int CHUNK = 1_000;
+ private const int CHUNK = 100;
12
private readonly SemaphoreSlim _lock = new(1, 1);
13
14
public int BotCount => _bots.Select(b => b.IsConnected).Count();
0 commit comments