mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Merge pull request #37503 from cachedout/issue_36713
Catch loader error on returners without save_load
This commit is contained in:
commit
2d924d0820
1 changed files with 1 additions and 1 deletions
|
@ -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 '
|
||||
|
|
Loading…
Add table
Reference in a new issue