Browse Source

cluster: replace erroneous comma with semicolon

v0.11.10-release
Sam Roberts 11 years ago
committed by Timothy J Fontaine
parent
commit
3c649703c7
  1. 2
      lib/cluster.js

2
lib/cluster.js

@ -474,7 +474,7 @@ function workerInit() {
cluster.worker.state = 'listening'; cluster.worker.state = 'listening';
var address = obj.address(); var address = obj.address();
message.act = 'listening'; message.act = 'listening';
message.port = address && address.port || port, message.port = address && address.port || port;
send(message); send(message);
}); });
}; };

Loading…
Cancel
Save