-
Notifications
You must be signed in to change notification settings - Fork 667
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Hide warning about unique filter originating from core
Fixes: #3216
- Loading branch information
1 parent
b97bf14
commit d0ee9c2
Showing
5 changed files
with
37 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule ansible-compat
updated
3 files
+2 −2 | .github/workflows/release.yml | |
+2 −2 | .pre-commit-config.yaml | |
+6 −1 | src/ansible_compat/runtime.py |
11 changes: 11 additions & 0 deletions
11
examples/playbooks/bug-core-warning-unique-filter-fallback.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
- name: Fixture for test_bug_3216 | ||
hosts: localhost | ||
gather_facts: false | ||
tasks: | ||
- name: Set fact | ||
ansible.builtin.set_fact: | ||
qq: ["qq", "ww"] | ||
- name: Print it | ||
ansible.builtin.debug: | ||
msg: "{{ qq | unique }}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters