You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently DSS in ansible_access.py calls external library ansible_runner.run().
Some output is already passed to argument printer defined in ansible_runner.py.
However Ansible prints some more output, that only can be suppressed when adding argument quiet=True to ansible_runner.run(), see documentation of ansible_runner.
The current ticket requests to
add an argument to AnsibleAccess.run() enabling callers to control the value of argument quiet to method ansible_runner.run().
Update callers like ansible_runner.py to pass argument quiet depending on the current log_level, e.g. quiet = (log_level >= logging.INFO).
The text was updated successfully, but these errors were encountered:
Currently DSS in ansible_access.py calls external library
ansible_runner.run()
.Some output is already passed to argument printer defined in ansible_runner.py.
However Ansible prints some more output, that only can be suppressed when adding argument
quiet=True
toansible_runner.run()
, see documentation ofansible_runner
.The current ticket requests to
quiet
to methodansible_runner.run()
.quiet
depending on the currentlog_level
, e.g.quiet = (log_level >= logging.INFO)
.The text was updated successfully, but these errors were encountered: