Skip to content
Snippets Groups Projects
Commit 7a6b5635 authored by Ryan Dahl's avatar Ryan Dahl
Browse files

Revert "Enable TCP timeout by default"

Causing programs to not exit gracefully.

This reverts commit cb84cde4.
parent 62277ab7
No related merge requests found
......@@ -5,7 +5,6 @@ var dns = require('dns');
var kMinPoolSpace = 128;
var kPoolSize = 40*1024;
var kDefaultTimeout = 60*1000;
var debugLevel = process.env['NODE_DEBUG'] ? 1 : 0;
function debug () {
......@@ -258,8 +257,6 @@ function _doFlush () {
}
function initStream (self) {
timeout.enroll(self, kDefaultTimeout);
self._readWatcher = ioWatchers.alloc();
self._readWatcher.callback = function () {
// If this is the first recv (pool doesn't exist) or we've used up
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment