Execute a final check on the job cache with publish system

This is to double check that nothing from the event bus way missed
This commit is contained in:
Thomas S Hatch 2013-05-20 09:01:59 -06:00
parent dbffb6948a
commit 9d57d39de1

View File

@ -1196,6 +1196,9 @@ class AESFuncs(object):
else:
id_ = minion.keys()[0]
ret[id_] = minion[id_].get('ret', None)
for key, val in self.local.get_cache_returns(ret['__jid__']).items():
if not key in ret:
ret[key] = val
return ret
def revoke_auth(self, load):