joyent/node-triton#158 tritonapi image cache never expires
Reviewed by: Chris Burroughs <chris.burroughs@joyet.com> Approved by: Chris Burroughs <chris.burroughs@joyet.com>
This commit is contained in:
parent
c7140609f0
commit
2453bc12e8
@ -7,6 +7,8 @@ Known issues:
|
||||
|
||||
## not yet released
|
||||
|
||||
- [joyent/node-triton#158] tritonapi image cache never expires
|
||||
|
||||
- [joyent/node-triton#153] Bump restify-clients dep. Thanks, github.com/tomgco.
|
||||
|
||||
- [joyent/node-triton#154] Fix `triton cloudapi ...` after #108 changes.
|
||||
|
@ -375,16 +375,21 @@ TritonApi.prototype._cacheGetJson = function _cacheGetJson(key, cb) {
|
||||
assert.string(key, 'key');
|
||||
assert.func(cb, 'cb');
|
||||
|
||||
var ttl = 5 * 60 * 1000; // timeout of cache file info (ms)
|
||||
|
||||
var keyPath = path.resolve(this.cacheDir, key);
|
||||
fs.stat(keyPath, function (statErr, stats) {
|
||||
if (!statErr &&
|
||||
stats.mtime.getTime() + ttl >= (new Date()).getTime()) {
|
||||
fs.readFile(keyPath, 'utf8', function (err, data) {
|
||||
if (err && err.code === 'ENOENT') {
|
||||
self.log.trace({keyPath: keyPath},
|
||||
'cache file does not exist');
|
||||
return cb();
|
||||
cb();
|
||||
} else if (err) {
|
||||
self.log.warn({err: err, keyPath: keyPath},
|
||||
'error reading cache file');
|
||||
return cb();
|
||||
cb();
|
||||
}
|
||||
var obj;
|
||||
try {
|
||||
@ -397,12 +402,18 @@ TritonApi.prototype._cacheGetJson = function _cacheGetJson(key, cb) {
|
||||
self.log.warn({err: err2},
|
||||
'failed to remove JSON cache file');
|
||||
}
|
||||
cb(err2);
|
||||
cb();
|
||||
});
|
||||
return;
|
||||
}
|
||||
cb(null, obj);
|
||||
});
|
||||
} else if (statErr && statErr.code !== 'ENOENT') {
|
||||
cb(statErr);
|
||||
} else {
|
||||
cb();
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user