Capture writer error
This commit is contained in:
parent
52638e65f5
commit
e8c76eef93
|
@ -10,7 +10,7 @@
|
|||
"errorhandler": "^1.1.1",
|
||||
"loopback": "^2.0.0",
|
||||
"loopback-boot": "^2.0.0",
|
||||
"loopback-component-storage": "~1.0.5",
|
||||
"loopback-component-storage": "^1.5.0",
|
||||
"loopback-datasource-juggler": "^2.7.0",
|
||||
"serve-favicon": "^2.0.1"
|
||||
},
|
||||
|
|
|
@ -115,7 +115,7 @@ exports.upload = function (provider, req, res, options, cb) {
|
|||
var writer = provider.upload(uploadParams);
|
||||
|
||||
writer.on('error', function(err) {
|
||||
self._error(err);
|
||||
self.emit('error', err);
|
||||
});
|
||||
|
||||
var endFunc = function () {
|
||||
|
@ -150,10 +150,10 @@ exports.upload = function (provider, req, res, options, cb) {
|
|||
});
|
||||
}
|
||||
|
||||
part.pipe(writer, { end: false });
|
||||
part.on("end", function () {
|
||||
writer.end();
|
||||
});
|
||||
part.pipe(writer, { end: false });
|
||||
};
|
||||
|
||||
form.parse(req, function (err, _fields, _files) {
|
||||
|
|
Loading…
Reference in New Issue