mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
Better status conditional from dagwieers
This commit is contained in:
committed by
Matt Clay
parent
117f640bb9
commit
24ce8887bf
@@ -155,7 +155,7 @@ def main():
|
||||
module.fail_json(msg=str(e), status=status, reason=str(e), url=url)
|
||||
|
||||
status = r.getcode()
|
||||
if satus >= 200 and status < 300:
|
||||
if 200 <= status < 300:
|
||||
module.exit_json(changed=True, status=status, reason=r.msg, url=url)
|
||||
else:
|
||||
length = r.headers.get('content-length', None)
|
||||
|
||||
Reference in New Issue
Block a user