From c390183337c3808ca00dc8ee48d70c946053df52 Mon Sep 17 00:00:00 2001 From: Adam Miller Date: Fri, 21 Aug 2020 16:24:35 -0500 Subject: [PATCH] fix skippy callback deprecation warning Fixes https://github.com/ansible-collections/ansible.posix/issues/62 Signed-off-by: Adam Miller --- changelogs/fragments/skippy_deprecation.yml | 3 +++ plugins/callback/skippy.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 changelogs/fragments/skippy_deprecation.yml diff --git a/changelogs/fragments/skippy_deprecation.yml b/changelogs/fragments/skippy_deprecation.yml new file mode 100644 index 0000000..88942a0 --- /dev/null +++ b/changelogs/fragments/skippy_deprecation.yml @@ -0,0 +1,3 @@ +--- +minor_changes: + - skippy - fixed the deprecation warning (by date) for skippy callback plugin diff --git a/plugins/callback/skippy.py b/plugins/callback/skippy.py index cdbf8dc..9c12ee4 100644 --- a/plugins/callback/skippy.py +++ b/plugins/callback/skippy.py @@ -14,7 +14,7 @@ DOCUMENTATION = ''' short_description: Ansible screen output that ignores skipped status deprecated: why: The 'default' callback plugin now supports this functionality - removed_in: '2.11' + removed_at_date: 2022-06-01 alternative: "'default' callback plugin with 'display_skipped_hosts = no' option" extends_documentation_fragment: - default_callback