Unverified Commit 3652e0c5 authored by Łukasz Magiera's avatar Łukasz Magiera Committed by GitHub

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.
parent 14ff3f99
......@@ -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()
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment