fix error in using a full UUID for 'triton inst UUID' and others

This commit is contained in:
Trent Mick 2015-08-31 11:14:14 -07:00
parent 92ad1af94e
commit 786ec9771c
1 changed files with 2 additions and 2 deletions

View File

@ -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);
});
},