-
-
Notifications
You must be signed in to change notification settings - Fork 35.4k
cluster: Add support to cluster to work with `NODE_OPTIONS="--inspect" #19165
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from 1 commit
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
19c4ec3
cluster: Add support to cluster to work with NODE_OPTIONS="--inspect"
sameer-coder ac832ab
cluster: Added test which spawns multiple workers for cluster to …
sameer-coder eb8f567
cluster: Changed multi-line template string in test-inspect-support-f…
sameer-coder ff81da0
cluster: spawning multiple workers in test-inspect-support-for-node_o…
sameer-coder d2cf4a4
cluster: Using common.mustCall to wrap callback in test-inspect-suppo…
sameer-coder 907b8ff
cluster: const numWorkers added in test-inspect-support-for-node_options
sameer-coder File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
cluster: Changed multi-line template string in test-inspect-support-f…
…or-node_options Changed multi-line template string in test-inspect-support-for-node_options as per feedback from @jasnell. PR #19165 Fixes : #19026
- Loading branch information
commit eb8f56736d27fd6b5253d857c2ed453eab99f3c9
There are no files selected for viewing
This file contains hidden or 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 |
|---|---|---|
|
|
@@ -24,8 +24,7 @@ function checkForInspectSupport(flag) { | |
|
|
||
| cluster.on('exit', (worker, code, signal) => { | ||
| if (worker.exitedAfterDisconnect === false) { | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should this be an assert rather than if-fail?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Does this look ok? cluster.on('exit', common.mustCall((worker, code, signal) => {
const errMsg = `For NODE_OPTIONS ${nodeOptions}, failed to start cluster`;
assert.strictEqual(worker.exitedAfterDisconnect, true, errMsg);
}, 2)); |
||
| assert.fail(`For ${nodeOptions}, failed to start cluster\ | ||
| with inspect option`); | ||
| assert.fail(`For NODE_OPTIONS ${nodeOptions}, failed to start cluster`); | ||
| } | ||
| }); | ||
| } | ||
|
|
||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wrap the callback in
common.mustCall.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done