mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 22:02:50 +00:00
fix py3 scope for unique filter errors, enable filters integration tests on rhel8 beta (#48961)
* fix py3 scope for unique filter errors, enable filters integration tests on rhel8 beta Signed-off-by: Adam Miller <admiller@redhat.com> * add changelog Signed-off-by: Adam Miller <admiller@redhat.com>
This commit is contained in:
committed by
Jordan Borean
parent
0420d606de
commit
6f90d62be3
@@ -62,12 +62,12 @@ def unique(environment, a, case_sensitive=False, attribute=None):
|
||||
else:
|
||||
c = list(c)
|
||||
except TypeError as e:
|
||||
error = e
|
||||
_do_fail(e)
|
||||
except Exception as e:
|
||||
error = e
|
||||
_do_fail(e)
|
||||
display.warning('Falling back to Ansible unique filter as Jinja2 one failed: %s' % to_text(e))
|
||||
finally:
|
||||
error = e
|
||||
|
||||
if not HAS_UNIQUE or error:
|
||||
|
||||
|
||||
Reference in New Issue
Block a user