Merge pull request #37503 from cachedout/issue_36713

Catch loader error on returners without save_load
This commit is contained in:
Mike Place 2016-11-07 22:33:57 +13:00 committed by GitHub
commit 2d924d0820

View file

@ -2304,7 +2304,7 @@ class ClearFuncs(object):
self.opts['ext_job_cache']
)
)
except AttributeError:
except (AttributeError, KeyError):
save_load_func = False
log.critical(
'The specified returner used for the external job cache '