diff --git a/lib/Server.js b/lib/Server.js index 07c19ff54c..6e09d7f5dc 100644 --- a/lib/Server.js +++ b/lib/Server.js @@ -659,6 +659,10 @@ class Server { this.listeningApp = http.createServer(app); } + this.listeningApp.on('error', (err) => { + this.log.error(err); + }); + killable(this.listeningApp); // Proxy websockets without the initial http request