forked from svrjs/svrjs
Change reqerrhandler placeholder to emitting clientError event on the server.
This commit is contained in:
parent
478c3002f0
commit
0085ff740d
1 changed files with 2 additions and 2 deletions
|
@ -100,8 +100,8 @@ module.exports = (req, res, logFacilities, config, next) => {
|
||||||
'Either ":path" or ":method" pseudoheader is missing.',
|
'Either ":path" or ":method" pseudoheader is missing.',
|
||||||
);
|
);
|
||||||
if (Buffer.alloc) err.rawPacket = Buffer.alloc(0);
|
if (Buffer.alloc) err.rawPacket = Buffer.alloc(0);
|
||||||
return;
|
if (req.socket && req.socket.server)
|
||||||
// TODO: reqerrhandler(err, req.socket, fromMain);
|
req.socket.server.emit("clientError", err, req.socket);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Reference in a new issue