cluster: replace erroneous comma with semicolon

This commit is contained in:
Sam Roberts 2013-12-02 17:24:58 -08:00 committed by Timothy J Fontaine
parent 8590f810a5
commit 3c649703c7

View File

@ -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);
});
};