reversed cache check condition to actually work

fixes #11505
pull/4420/head
Brian Coca 2015-07-07 08:51:39 -04:00
parent 8224627036
commit 9bf39e7875
1 changed files with 1 additions and 1 deletions

View File

@ -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