Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
b70ca4a
doc: updated fs #5862 removed irrelevant data in fs.markdown
ToPal Mar 23, 2016
eb0ed46
doc: reformat & improve node.1 manual page
Fishrock123 Feb 29, 2016
3c8e59c
lib: copy arguments object instead of leaking it
nwoltman Dec 20, 2015
f209eff
test: remove timer from test-http-1.0
santigimeno Feb 7, 2016
07b7172
net: remove unused `var self = this` from old code
benjamingr Feb 14, 2016
108fc90
lib: reduce usage of `self = this`
JacksonTian Feb 15, 2016
6daebdb
lib: simplify code with String.prototype.repeat()
JacksonTian Feb 19, 2016
acbce4b
repl: fix stack trace column number in strict mode
princejwesley Feb 24, 2016
8648420
net: make `isIPv4` and `isIPv6` more efficient
vkurchatkin Feb 28, 2016
a6ec8a6
doc: fix crypto update() signatures
mscdex Mar 1, 2016
3b8fc4f
doc: update crypto docs to use good defaults
billautomata Mar 1, 2016
b258ddd
test: repl tab completion test
santigimeno Mar 2, 2016
7520100
test: add test-npm-install to parallel tests suite
Feb 9, 2016
d506eea
test: improve test-npm-install
santigimeno Mar 8, 2016
1d0e4a9
deps: remove unused openssl files
bnoordhuis Mar 8, 2016
0c6f674
console: check that stderr is writable
Trott Mar 9, 2016
78effc3
test: add batch of known issue tests
cjihrig Mar 11, 2016
bf1fe46
doc: Add windows example for Path.format
mithun-daa Mar 14, 2016
c0a24e4
doc: fix multiline return comments in querystring
claudiorodriguez Mar 14, 2016
8187661
https: fix ssl socket leak when keepalive is used
alexpenev-s Mar 14, 2016
7e45d4f
test: minimize test-http-get-pipeline-problem
Trott Mar 15, 2016
1b266fc
test: remove the use of curl in the test suite
santigimeno Mar 16, 2016
3a901b0
tools: remove unused imports
thefourtheye Mar 17, 2016
e43e8e3
doc: add a cli options doc page
Fishrock123 Mar 18, 2016
e57355c
test: make test-net-connect-options-ipv6.js better
mhdawson Mar 18, 2016
79d26ae
doc: explain path.format expected properties
eversojk Mar 19, 2016
0836d7e
test: fix flaky test-cluster-shared-leak
claudiorodriguez Mar 19, 2016
d55599f
dns: use template literals
benjamingr Mar 20, 2016
20faf90
doc: explain error message on missing main file
drywolf Mar 20, 2016
1135ee9
test: strip non-free icc profile from person.jpg
kapouer Mar 20, 2016
86b876f
test: smaller chunk size for smaller person.jpg
kapouer Mar 20, 2016
0a1eb16
test: fix `test-cluster-worker-kill`
santigimeno Mar 20, 2016
7c83702
doc: use consistent event name parameter
benjamingr Mar 22, 2016
8c24bd2
doc: fix order of end tags of list after heading
Mar 3, 2016
96e163a
buffer: changing let in for loops back to var
gareth-ellis Mar 21, 2016
040263e
doc: grammar, clarity and links in timers doc
bengl Mar 18, 2016
55c3f80
deps: upgrade npm in LTS to 2.15.1
othiym23 Mar 30, 2016
60ddab8
doc: add instructions to only sign a release
Fishrock123 Mar 23, 2016
42bbdc9
Add @mhdawson back to the CTC
jasnell Mar 9, 2016
8d86d23
doc: typo: interal->internal.
kosak Mar 22, 2016
9ef4b1b
2016-03-31, Version v4.4.2 'Argon' (LTS)
Mar 30, 2016
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
test: fix flaky test-cluster-shared-leak
Test was flaky on centos7-64 due to an uncaught ECONNRESET
on the worker code. This catches the error so the process
will exit with code 0.

Fixes: #5604
PR-URL: #5802
Reviewed-By: Rich Trott <[email protected]>
Reviewed-By: James M Snell <[email protected]>
  • Loading branch information
claudiorodriguez authored and Myles Borins committed Mar 30, 2016
commit 0836d7e2fbe7795befa1fa1ad858f51b63c4dbf3
5 changes: 5 additions & 0 deletions test/parallel/test-cluster-shared-leak.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,11 @@ if (cluster.isMaster) {
}

const server = net.createServer(function(c) {
c.on('error', function(e) {
// ECONNRESET is OK, so we don't exit with code !== 0
if (e.code !== 'ECONNRESET')
throw e;
});
c.end('bye');
});

Expand Down