You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: node/cmd/guardiand/node.go
+4-1Lines changed: 4 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -240,6 +240,8 @@ var (
240
240
chainGovernorEnabled*bool
241
241
governorFlowCancelEnabled*bool
242
242
243
+
processorWorkerFactor*float64
244
+
243
245
ccqEnabled*bool
244
246
ccqAllowedRequesters*string
245
247
ccqP2pPort*uint
@@ -450,6 +452,7 @@ func init() {
450
452
451
453
chainGovernorEnabled=NodeCmd.Flags().Bool("chainGovernorEnabled", false, "Run the chain governor")
452
454
governorFlowCancelEnabled=NodeCmd.Flags().Bool("governorFlowCancelEnabled", false, "Enable flow cancel on the governor")
455
+
processorWorkerFactor=NodeCmd.Flags().Float64("processorWorkerFactor", 0.0, "Multiplied by the number of available CPUs on the system to determine the number of workers that the processor uses. 0.0 means single worker")
0 commit comments