Skip to content

Commit d88fff6

Browse files
authored
Reduce download workers to 6 (#11)
1 parent 1c8f161 commit d88fff6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/FileDownloader/ChunkFileDownloader.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ namespace ProjectCeleste.GameFiles.GameScanner.FileDownloader
1313
public class ChunkFileDownloader : IFileDownloader
1414
{
1515
internal const int MaxChunkSize = 10 * 1024 * 1024; //10Mb
16-
private const int MaxConcurrentDownloads = 12;
16+
private const int MaxConcurrentDownloads = 6;
1717

1818
private readonly Stopwatch _downloadSpeedStopwatch;
1919
private readonly string _downloadTempFolder;

0 commit comments

Comments
 (0)