1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

ios check_rc: Default to sending text of exception, not the whole exception (#47300)

* Default to sending text of exception, not the whole exception
This commit is contained in:
Nathaniel Case 2018-10-24 09:56:47 -04:00 committed by GitHub
parent 4420e4c3cd
commit 6a866a5e10
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View file

@ -0,0 +1,3 @@
---
bugfixes:
- Fix issue getting output from failed ios commands when ``check_rc=False``

View file

@ -291,7 +291,7 @@ class Cliconf(CliconfBase):
except AnsibleConnectionFailure as e:
if check_rc:
raise
out = getattr(e, 'err', e)
out = getattr(e, 'err', to_text(e))
responses.append(out)