summaryrefslogtreecommitdiff
path: root/benchmark/fs/write-stream-throughput.js
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/fs/write-stream-throughput.js')
-rw-r--r--benchmark/fs/write-stream-throughput.js7
1 files changed, 0 insertions, 7 deletions
diff --git a/benchmark/fs/write-stream-throughput.js b/benchmark/fs/write-stream-throughput.js
index 6fe00cde48..60ad47bc4e 100644
--- a/benchmark/fs/write-stream-throughput.js
+++ b/benchmark/fs/write-stream-throughput.js
@@ -36,7 +36,6 @@ function main({ dur, encodingType, size }) {
try { fs.unlinkSync(filename); } catch (e) {}
var started = false;
- var ending = false;
var ended = false;
var f = fs.createWriteStream(filename);
@@ -52,15 +51,9 @@ function main({ dur, encodingType, size }) {
function write() {
- // don't try to write after we end, even if a 'drain' event comes.
- // v0.8 streams are so sloppy!
- if (ending)
- return;
-
if (!started) {
started = true;
setTimeout(function() {
- ending = true;
f.end();
}, dur * 1000);
bench.start();