Skip to content

Commit c0d4126

Browse files
enable resource manager by default for boot node
1 parent 50af5aa commit c0d4126

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/bootnode/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ func main() {
114114
maxConnPerIP := flag.Int("max_conn_per_ip", 10, "max connections number for same ip")
115115
forceReachabilityPublic := flag.Bool("force_public", false, "forcing the local node to believe it is reachable externally")
116116
connMgrHighWaterMark := flag.Int("cmg_high_watermark", 900, "connection manager trims excess connections when they pass the high watermark")
117-
resourceManagerEnabled := flag.Bool("resmgr-enabled", false, "enable p2p resource manager")
117+
resourceManagerEnabled := flag.Bool("resmgr-enabled", true, "enable p2p resource manager")
118118
resourceManagerMemoryLimitBytes := flag.Uint64("resmgr-memory-limit-bytes", 0, "memory limit for p2p resource manager")
119119
resourceManagerFileDescriptorsLimit := flag.Uint64("resmgr-file-descriptor-limit", 0, "file descriptor limit for p2p resource manager")
120120
noTransportSecurity := flag.Bool("no_transport_security", false, "disable TLS encrypted transport")

0 commit comments

Comments
 (0)