0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2025-04-01 02:42:23 -05:00

error handling when uploading tarballs

This commit is contained in:
Alex Kocharin 2013-09-28 16:37:24 +04:00
parent 8c5628bfae
commit c3de74ebfd
3 changed files with 11 additions and 2 deletions

View file

@ -70,7 +70,7 @@ function write_stream(name) {
};
stream.abort = function() {
file.on('close', function() {
fs.unlink(tmpname);
fs.unlink(tmpname, function(){});
});
file.destroySoon();
};

View file

@ -170,6 +170,11 @@ Storage.prototype.add_tarball = function(name, filename) {
status: 409,
msg: 'this tarball is already present'
}));
} else if (!stream.status && upstream != self.local) {
stream.emit('error', new UError({
status: 503,
msg: 'one or more uplinks are unreachable'
}));
} else {
stream.emit('error', err);
}

View file

@ -102,7 +102,11 @@ Storage.prototype.add_tarball = function(name, filename) {
});
stream.abort = function() {
wstream.req.abort();
process.nextTick(function() {
if (wstream.req) {
wstream.req.abort();
}
});
};
stream.done = function() {};
stream.pipe(wstream);