From 3652e0c5f382f11126c753367879b998ede20346 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Magiera?= Date: Mon, 20 May 2019 17:41:16 +0200 Subject: [PATCH] core: Use correct default for connmgr lowWater Most people weren't affected by this as those values are set in config at init, but for others it would be rather hard to debug. --- core/node/groups.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/node/groups.go b/core/node/groups.go index 4473f79e83d..c5cb13cdea3 100644 --- a/core/node/groups.go +++ b/core/node/groups.go @@ -41,7 +41,7 @@ func LibP2P(bcfg *BuildCfg, cfg *config.Config) fx.Option { // parse ConnMgr config grace := config.DefaultConnMgrGracePeriod - low := config.DefaultConnMgrHighWater + low := config.DefaultConnMgrLowWater high := config.DefaultConnMgrHighWater connmgr := fx.Options()