Commit 8cf4452d by James Cammarata

Fix module arg parsing when 'args' are present but not a dict (v2)

parent 6a44056d
......@@ -135,7 +135,11 @@ class ModuleArgsParser:
# this can occasionally happen, simplify
if args and 'args' in args:
args = args['args']
tmp_args = args['args']
del args['args']
if isinstance(tmp_args, string_types):
tmp_args = parse_kv(tmp_args)
args.update(tmp_args)
# finally, update the args we're going to return with the ones
# which were normalized above
......
......@@ -27,6 +27,7 @@ class FactCache(MutableMapping):
def __init__(self, *args, **kwargs):
self._plugin = cache_loader.get(C.CACHE_PLUGIN)
if self._plugin is None:
# FIXME: this should be an exception
return
def __getitem__(self, key):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment