Skip to content

Commit

Permalink
Make the for loop run 10 times again
Browse files Browse the repository at this point in the history
Whoops, dev change made it in!
  • Loading branch information
Simyon264 committed May 5, 2024
1 parent 1907390 commit d46bb8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Server/ReplayParser/ReplayParser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public static async Task ConsumeQueue(CancellationToken token)

// Since replays are like 200mb long, we want to parrallelize this.
var tasks = new List<Task>();
for (var i = 0; i < 1; i++)
for (var i = 0; i < 10; i++)
{
if (Queue.Count == 0)
{
Expand Down

0 comments on commit d46bb8c

Please sign in to comment.