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

View File

@ -325,8 +325,8 @@ Triton.prototype.getInstance = function getInstance(name, cb) {
return next(); return next();
} }
} }
this.cloudapi.getMachine(uuid, function (err, inst) { self.cloudapi.getMachine(uuid, function (err, inst_) {
inst = inst; inst = inst_;
next(err); next(err);
}); });
}, },