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:
parent
8c5628bfae
commit
c3de74ebfd
3 changed files with 11 additions and 2 deletions
|
@ -70,7 +70,7 @@ function write_stream(name) {
|
|||
};
|
||||
stream.abort = function() {
|
||||
file.on('close', function() {
|
||||
fs.unlink(tmpname);
|
||||
fs.unlink(tmpname, function(){});
|
||||
});
|
||||
file.destroySoon();
|
||||
};
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue