Skip to content

Commit

Permalink
test: dynamic port in cluster worker wait close
Browse files Browse the repository at this point in the history
Remove common.PORT from test-cluster-worker-wait-server-close
possibility that a dynamic port used in another test will collide
with common.PORT.

PR-URL: #12466
Ref: #12376
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com>
  • Loading branch information
Sebastian Plesciuc authored and jasnell committed Apr 19, 2017
1 parent 9c5c469 commit 86a3ba0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/parallel/test-cluster-worker-wait-server-close.js
Expand Up @@ -12,7 +12,7 @@ if (cluster.isWorker) {
// Wait for any data, then close connection
socket.write('.');
socket.on('data', common.noop);
}).listen(common.PORT, common.localhostIPv4);
}).listen(0, common.localhostIPv4);

server.once('close', function() {
serverClosed = true;
Expand All @@ -33,8 +33,8 @@ if (cluster.isWorker) {
const worker = cluster.fork();

// Disconnect worker when it is ready
worker.once('listening', function() {
const socket = net.createConnection(common.PORT, common.localhostIPv4);
worker.once('listening', function(address) {
const socket = net.createConnection(address.port, common.localhostIPv4);

socket.on('connect', function() {
socket.on('data', function() {
Expand Down

0 comments on commit 86a3ba0

Please sign in to comment.