fix: remove default value for the cluster flag (#9570)

Defining the default value applies the flag automatically and hence activates the cluster mode.
This commit is contained in:
Harminder Virk
2024-10-14 22:24:13 +05:30
committed by GitHub
parent 809c851865
commit f8e8b276bd

View File

@@ -339,7 +339,6 @@ function buildLocalCommands(cli, isLocalProject) {
})
.option(`cluster`, {
type: `number`,
default: process.env.CPUS,
describe:
"Start the Node.js server in cluster mode. You can specify the number of cpus to use, which defaults to (env.CPUS)",
}),