[stable-2.7] Handle sets differently than lists in wrap_var. Fixes #47372.

(cherry picked from commit c58de75f38)

Co-authored-by: Matt Martz <matt@sivel.net>
pull/47463/head
Matt Martz 6 years ago committed by Toshio Kuratomi
parent ce16286dee
commit 0e933f76ba

@ -0,0 +1,2 @@
bugfixes:
- unsafe - Add special casing to sets, to support wrapping elements of sets correctly in Python 3 (https://github.com/ansible/ansible/issues/47372)

@ -96,11 +96,17 @@ def _wrap_list(v):
return v
def _wrap_set(v):
return set(item if item is None else wrap_var(item) for item in v)
def wrap_var(v):
if isinstance(v, Mapping):
v = _wrap_dict(v)
elif isinstance(v, (MutableSequence, Set)):
elif isinstance(v, MutableSequence):
v = _wrap_list(v)
elif isinstance(v, Set):
v = _wrap_set(v)
elif v is not None and not isinstance(v, AnsibleUnsafe):
v = UnsafeProxy(v)
return v

@ -252,3 +252,13 @@
loop: "{{ fake_var }}"
register: result
failed_when: result is not skipped
# https://github.com/ansible/ansible/issues/47372
- name: Loop unsafe list
debug:
var: item
with_items: "{{ things|map('string')|unique }}"
vars:
things:
- !unsafe foo
- !unsafe bar

Loading…
Cancel
Save