tweak twitter queries parallelism 2

This commit is contained in:
Vincent Cloutier 2023-01-15 12:53:04 -05:00
parent 014dee23a3
commit 08f5aef7fc

View file

@ -64,7 +64,7 @@ namespace BirdsiteLive.Pipeline.Processors
} }
}); });
todo.Add(t); todo.Add(t);
if (todo.Count > 5) if (todo.Count > 10)
{ {
await Task.WhenAll(todo); await Task.WhenAll(todo);
todo.Clear(); todo.Clear();