Skip to content

Commit

Permalink
Partial-Bug: #1503134
Browse files Browse the repository at this point in the history
Bind 3002 port with localhost in stead of IPADDR_ANY.

Change-Id: I0c5d3153b906b8d84d95be71a12c59162b2f28ed
(cherry picked from commit 81744d4)
  • Loading branch information
biswajit-mandal authored and knagakiran committed Oct 31, 2015
1 parent a0a1d4e commit 1135951
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jobServerStart.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ connectToMainServer = function () {
kueJobListen = function() {
/* kue UI listening port */
var kuePort = config.kue.ui_port || 3002;
kue.app.listen(kuePort);
kue.app.listen(kuePort, '127.0.0.1');
}

function createVRouterSummaryJob ()
Expand Down

0 comments on commit 1135951

Please sign in to comment.