fixes for triton->tritonapi renaming
This commit is contained in:
parent
2baf40d841
commit
a3d362423b
@ -36,7 +36,7 @@ function do_profiles(subcmd, opts, args, cb) {
|
||||
var profiles;
|
||||
try {
|
||||
profiles = mod_config.loadAllProfiles({
|
||||
configDir: this.triton.config._configDir,
|
||||
configDir: this.tritonapi.config._configDir,
|
||||
log: this.log
|
||||
});
|
||||
} catch (e) {
|
||||
@ -48,12 +48,12 @@ function do_profiles(subcmd, opts, args, cb) {
|
||||
var i;
|
||||
if (opts.json) {
|
||||
for (i = 0; i < profiles.length; i++) {
|
||||
profiles[i].curr = (profiles[i].name === this.triton.profile.name);
|
||||
profiles[i].curr = (profiles[i].name === this.tritonapi.profile.name);
|
||||
}
|
||||
common.jsonStream(profiles);
|
||||
} else {
|
||||
for (i = 0; i < profiles.length; i++) {
|
||||
profiles[i].curr = (profiles[i].name === this.triton.profile.name
|
||||
profiles[i].curr = (profiles[i].name === this.tritonapi.profile.name
|
||||
? '*' : '');
|
||||
}
|
||||
tabula(profiles, {
|
||||
|
@ -120,7 +120,8 @@ TritonApi.prototype._cloudapiFromProfile =
|
||||
return client;
|
||||
};
|
||||
|
||||
Triton.prototype._cachePutJson = function _cachePutJson(key, obj, cb) {
|
||||
|
||||
TritonApi.prototype._cachePutJson = function _cachePutJson(key, obj, cb) {
|
||||
var self = this;
|
||||
assert.string(this.cacheDir, 'this.cacheDir');
|
||||
assert.string(key, 'key');
|
||||
@ -137,7 +138,7 @@ Triton.prototype._cachePutJson = function _cachePutJson(key, obj, cb) {
|
||||
});
|
||||
};
|
||||
|
||||
Triton.prototype._cacheGetJson = function _cacheGetJson(key, cb) {
|
||||
TritonApi.prototype._cacheGetJson = function _cacheGetJson(key, cb) {
|
||||
var self = this;
|
||||
assert.string(this.cacheDir, 'this.cacheDir');
|
||||
assert.string(key, 'key');
|
||||
|
Reference in New Issue
Block a user