-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cluster: add support for NODE_OPTIONS="--inspect"
When using cluster and --inspect as cli argument it is correctly handled and each worker will use a different port, this was fixed by #13619. But when env var NODE_OPTIONS="--inspect" is set this logic doesn't apply and the workers will fail as they try to attach to the same port. Fixes: #19026 PR-URL: #19165 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com>
- Loading branch information
1 parent
89e7a5f
commit 926214a
Showing
2 changed files
with
34 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
'use strict'; | ||
const common = require('../common'); | ||
const cluster = require('cluster'); | ||
const assert = require('assert'); | ||
|
||
common.skipIfInspectorDisabled(); | ||
|
||
checkForInspectSupport('--inspect'); | ||
|
||
function checkForInspectSupport(flag) { | ||
|
||
const nodeOptions = JSON.stringify(flag); | ||
const numWorkers = 2; | ||
process.env.NODE_OPTIONS = flag; | ||
|
||
if (cluster.isMaster) { | ||
for (let i = 0; i < numWorkers; i++) { | ||
cluster.fork(); | ||
} | ||
|
||
cluster.on('online', (worker) => { | ||
worker.disconnect(); | ||
}); | ||
|
||
cluster.on('exit', common.mustCall((worker, code, signal) => { | ||
const errMsg = `For NODE_OPTIONS ${nodeOptions}, failed to start cluster`; | ||
assert.strictEqual(worker.exitedAfterDisconnect, true, errMsg); | ||
}, numWorkers)); | ||
} | ||
} |