mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-03-27 05:43:09 +00:00
Fix warning message in dense callback plugin (#83)
* fix dense callback plugin class name * add changelogs
This commit is contained in:
2
changelogs/fragments/83-dense-callback-warning.yml
Normal file
2
changelogs/fragments/83-dense-callback-warning.yml
Normal file
@@ -0,0 +1,2 @@
|
||||
bugfixes:
|
||||
- dense callback - fix plugin access to its configuration variables and remove a warning message (https://github.com/ansible/ansible/issues/64628).
|
||||
@@ -144,7 +144,7 @@ colors = dict(
|
||||
states = ('skipped', 'ok', 'changed', 'failed', 'unreachable')
|
||||
|
||||
|
||||
class CallbackModule_dense(CallbackModule_default):
|
||||
class CallbackModule(CallbackModule_default):
|
||||
|
||||
'''
|
||||
This is the dense callback interface, where screen estate is still valued.
|
||||
@@ -497,5 +497,3 @@ class CallbackModule_dense(CallbackModule_default):
|
||||
# When using -vv or higher, simply do the default action
|
||||
if display.verbosity >= 2 or not HAS_OD:
|
||||
CallbackModule = CallbackModule_default
|
||||
else:
|
||||
CallbackModule = CallbackModule_dense
|
||||
|
||||
Reference in New Issue
Block a user