Commit 830225d9 by James Cammarata

Fix errors in subelements lookup plugin and associated tests (v2)

parent 4d999f8f
......@@ -33,8 +33,8 @@ class LookupModule(LookupBase):
raise errors.AnsibleError(
"subelements lookup expects a list of two or three items, "
+ msg)
terms = listify_lookup_plugin_terms(terms, self.basedir, inject)
terms[0] = listify_lookup_plugin_terms(terms[0], self.basedir, inject)
terms = listify_lookup_plugin_terms(terms, variables, loader=self._loader)
terms[0] = listify_lookup_plugin_terms(terms[0], variables, loader=self._loader)
# check lookup terms - check number of terms
if not isinstance(terms, list) or not 2 <= len(terms) <= 3:
......
......@@ -119,7 +119,7 @@
- skip_missing: yes
register: _subelements_missing_subkeys
- debug: var=_subelements_missing_subkeys.skipped
- debug: var=_subelements_missing_subkeys
- debug: var=_subelements_missing_subkeys.results|length
- name: verify with_subelements in subkeys results
assert:
......
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