Skip to content

Commit

Permalink
removed call to flush as it's not available in 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
remy committed Nov 8, 2011
1 parent 889f08b commit 66ca366
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/ws/connection.js
Expand Up @@ -48,7 +48,8 @@ function Connection(manager, options, req, socket, upgradeHead) {
Array.prototype.join.call(arguments, ' ') +
'\033[39m'
);
process.stdout.flush();
// .flush no longer supported in 0.6.0
//process.stdout.flush();
};
}

Expand Down

0 comments on commit 66ca366

Please sign in to comment.