From eb0f9ff8131b0b036cbceaa1c64a57cc58938b7d Mon Sep 17 00:00:00 2001 From: Matt Joiner Date: Thu, 8 Feb 2018 23:52:54 +1100 Subject: [PATCH] Raise default torrent peers highwater to 500 --- config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.go b/config.go index a8933aba..b02f1af7 100644 --- a/config.go +++ b/config.go @@ -134,7 +134,7 @@ func (cfg *Config) setDefaults() { cfg.HalfOpenConnsPerTorrent = 80 } if cfg.TorrentPeersHighWater == 0 { - cfg.TorrentPeersHighWater = 200 + cfg.TorrentPeersHighWater = 500 } if cfg.TorrentPeersLowWater == 0 { cfg.TorrentPeersLowWater = 50 -- 2.50.0