pagerduty_alert: fix IndexError exception (#46770)

* pagerduty_alert: fix IndexError exception

* clean a bit
pull/66240/head
oceyral 5 years ago committed by ansibot
parent 8743ff02c0
commit f9e315671a

@ -153,11 +153,18 @@ def check(module, name, state, service_id, integration_key, api_key, incident_ke
if info['status'] != 200:
module.fail_json(msg="failed to check current incident status."
"Reason: %s" % info['msg'])
json_out = json.loads(response.read())["incidents"][0]
if state != json_out["status"]:
return json_out, True
return json_out, False
incidents = json.loads(response.read())["incidents"]
msg = "No corresponding incident"
if len(incidents) == 0:
if state in ('acknowledged', 'resolved'):
return msg, False
return msg, True
elif state != incidents[0]["status"]:
return incidents[0], True
return incidents[0], False
def send_event(module, service_key, event_type, desc,

Loading…
Cancel
Save