mirror of https://github.com/node-red/node-red.git
Fix "EADDRINUSE" error
parent
adfc5b3e98
commit
892d21fb77
|
@ -458,7 +458,7 @@ httpsPromise.then(function(startupHttps) {
|
|||
RED.start().then(function() {
|
||||
if (settings.httpAdminRoot !== false || settings.httpNodeRoot !== false || settings.httpStatic) {
|
||||
server.on('error', function(err) {
|
||||
if (err.errno === "EADDRINUSE") {
|
||||
if (err.code === "EADDRINUSE") {
|
||||
RED.log.error(RED.log._("server.unable-to-listen", {listenpath:getListenPath()}));
|
||||
RED.log.error(RED.log._("server.port-in-use"));
|
||||
} else {
|
||||
|
|
Loading…
Reference in New Issue