fix error in using a full UUID for 'triton inst UUID' and others
This commit is contained in:
parent
92ad1af94e
commit
786ec9771c
@ -325,8 +325,8 @@ Triton.prototype.getInstance = function getInstance(name, cb) {
|
||||
return next();
|
||||
}
|
||||
}
|
||||
this.cloudapi.getMachine(uuid, function (err, inst) {
|
||||
inst = inst;
|
||||
self.cloudapi.getMachine(uuid, function (err, inst_) {
|
||||
inst = inst_;
|
||||
next(err);
|
||||
});
|
||||
},
|
||||
|
Reference in New Issue
Block a user