Skip to content

Commit

Permalink
cluster: replace erroneous comma with semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
sam-github authored and tjfontaine committed Dec 31, 2013
1 parent 8590f81 commit 3c64970
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/cluster.js
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,7 @@ function workerInit() {
cluster.worker.state = 'listening';
var address = obj.address();
message.act = 'listening';
message.port = address && address.port || port,
message.port = address && address.port || port;
send(message);
});
};
Expand Down

0 comments on commit 3c64970

Please sign in to comment.