reversed cache check condition to actually work

fixes #11505
pull/11512/merge
Brian Coca 9 years ago
parent 8224627036
commit 9bf39e7875

@ -115,7 +115,7 @@ class VMwareInventory(object):
else:
cache_max_age = 0
cache_stat = os.stat(cache_file)
if (cache_stat.st_mtime + cache_max_age) < time.time():
if (cache_stat.st_mtime + cache_max_age) >= time.time():
with open(cache_file) as cache:
return json.load(cache)
return default

Loading…
Cancel
Save