From b93473aa3b574eb5d8cf5c39cf6d8d4c783802a6 Mon Sep 17 00:00:00 2001 From: Nicholas Hastings Date: Thu, 23 Jun 2016 08:01:42 -0400 Subject: [PATCH] Increase default MaxServers. --- DepotDownloader/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DepotDownloader/Program.cs b/DepotDownloader/Program.cs index 61704bb5..5b596afa 100644 --- a/DepotDownloader/Program.cs +++ b/DepotDownloader/Program.cs @@ -90,7 +90,7 @@ namespace DepotDownloader ContentDownloader.Config.InstallDirectory = GetParameter(args, "-dir"); ContentDownloader.Config.DownloadAllPlatforms = HasParameter(args, "-all-platforms"); ContentDownloader.Config.VerifyAll = HasParameter(args, "-verify-all") || HasParameter(args, "-verify_all") || HasParameter(args, "-validate"); - ContentDownloader.Config.MaxServers = GetParameter(args, "-max-servers", 8); + ContentDownloader.Config.MaxServers = GetParameter(args, "-max-servers", 20); ContentDownloader.Config.MaxDownloads = GetParameter(args, "-max-downloads", 4); string branch = GetParameter(args, "-branch") ?? GetParameter(args, "-beta") ?? "Public"; var forceDepot = HasParameter(args, "-force-depot");