mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-03-31 15:53:09 +00:00
Easier to debug (#30675)
This commit is contained in:
committed by
Adam Miller
parent
2e1c889275
commit
dc86f6f6d5
@@ -489,7 +489,7 @@ def main():
|
||||
u_content = to_text(content, encoding=content_encoding)
|
||||
|
||||
if resp['status'] not in status_code:
|
||||
uresp['msg'] = 'Status code was not %s: %s' % (status_code, uresp.get('msg', ''))
|
||||
uresp['msg'] = 'Status code was %s and not %s: %s' % (resp['status'], status_code, uresp.get('msg', ''))
|
||||
module.fail_json(content=u_content, **uresp)
|
||||
elif return_content:
|
||||
module.exit_json(changed=changed, content=u_content, **uresp)
|
||||
|
||||
Reference in New Issue
Block a user