Testing more events

remotes/origin/feature/ch139802/phl-inconsistent-errors-when-downloading
cgonzalez 4 years ago
parent 41e22df257
commit 2c1700b3bd

@ -335,10 +335,8 @@ function ExportRequest (ostream, callback, beforeSink) {
logger.info({ custom: true }, 'Destroying stream');
that.istream.destroy();
}
}).on('error', function(e) {
logger.info({ custom: true, errormessage: e }, 'Close stream error');
}).on('finish', function () {
logger.info({ custom: true }, 'Stream finished');
}).on('pipe', function(src) {
logger.info({ custom: true, readable: src.readable }, 'Something is piping into the ostream');
});
}
@ -359,7 +357,6 @@ ExportRequest.prototype.sendFile = function (err, filename, callback) {
}
logger.info({ custom: true }, 'Sending file: on open');
logger.info({ custom: true, readable: that.ostream.req.readable }, 'Ostream');
that.istream
.pipe(that.ostream)

Loading…
Cancel
Save