mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 14:22:46 +00:00
fix cartesian lookup
it seems that this was not working in 1.9 but we swallowed up the error fixes #14437
This commit is contained in:
@@ -50,5 +50,5 @@ class LookupModule(LookupBase):
|
|||||||
if len(my_list) == 0:
|
if len(my_list) == 0:
|
||||||
raise AnsibleError("with_cartesian requires at least one element in each list")
|
raise AnsibleError("with_cartesian requires at least one element in each list")
|
||||||
|
|
||||||
return [self._flatten(x) for x in product(*my_list, fillvalue=None)]
|
return [self._flatten(x) for x in product(*my_list)]
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user