changed errors a bit.

This commit is contained in:
John Shaver 2018-05-04 09:28:29 -07:00
parent 089d85df67
commit 9eb96be46c
1 changed files with 4 additions and 3 deletions

View File

@ -155,11 +155,12 @@ module.exports.create = function (deps, config) {
conn.once('error', onError);
conn.once('data', function (chunk) {
//Adding this to track problems with error handling TODO: Remove this error handler.
conn.on('error', function(err) {
conn.once('error', function(err) {
console.log("Received error in tcpHandler after removing error listener.",
"Number of errorListeners:",
conn.listenerCount()
"Number of errorListeners:", conn.listenerCount("error"),
"Error: ", err
);
if(!conn.listenerCount("error")) conn.emit("error", err);
});
conn.removeListener('error', onError);
peek(conn, chunk, opts);