Skip to content

Commit

Permalink
core: Use correct default for connmgr lowWater
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
magik6k authored May 20, 2019
1 parent 14ff3f9 commit 3652e0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/node/groups.go
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 3652e0c

Please sign in to comment.