diff --git a/lib/tcp/index.js b/lib/tcp/index.js index 5198fc2..914d4eb 100644 --- a/lib/tcp/index.js +++ b/lib/tcp/index.js @@ -154,16 +154,16 @@ 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.once('error', function(err) { - console.log("Received error in tcpHandler after removing error listener.", - "Number of errorListeners:", conn.listenerCount("error"), - "Error: ", err - ); - if(conn.listenerCount("error") <= 1) { - process.nextTick(function() {conn.emit("error", err);}); - } - }); +// //Adding this to track problems with error handling TODO: Remove this error handler. +// conn.once('error', function(err) { +// console.log("Received error in tcpHandler after removing error listener.", +// "Number of errorListeners:", conn.listenerCount("error"), +// "Error: ", err +// ); +// if(conn.listenerCount("error") <= 1) { +// process.nextTick(function() {conn.emit("error", err);}); +// } +// }); conn.removeListener('error', onError); peek(conn, chunk, opts); });