pagerduty_alert: fix IndexError exception (#46770)
* pagerduty_alert: fix IndexError exception * clean a bit
This commit is contained in:
parent
8743ff02c0
commit
f9e315671a
1 changed files with 11 additions and 4 deletions
|
@ -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…
Reference in a new issue