express icon indicating copy to clipboard operation
express copied to clipboard

httpsServer.on('clientError' BUG

Open introspection3 opened this issue 6 months ago • 1 comments

const httpsServer = https.createServer(serverOptions, app);

httpsServer.listen(defaultWebServerConfigVisitHttpsPort, () => { logger.debug('site VisitHttps Server running on port ' + defaultWebServerConfigVisitHttpsPort); }); httpsServer.on('clientError', (err, socket) => { . //This error has been constantly occurring :socket hang up logger.warn('Got client error:'+err.message+',socket=',socket.address()); socket.destroy(); })

image

introspection3 avatar Dec 07 '23 11:12 introspection3