Skip to content

Commit

Permalink
better error handling
Browse files Browse the repository at this point in the history
  • Loading branch information
mctonderski-splunk committed Jun 20, 2024
1 parent d5b8fd5 commit 0196739
Showing 1 changed file with 12 additions and 14 deletions.
26 changes: 12 additions & 14 deletions jira_connector.py
Original file line number Diff line number Diff line change
Expand Up @@ -506,18 +506,15 @@ def _update_base_url_in_url_path(self, url, new_base):
))

def _validate_and_update_custom_fields_url(self, custom_fields):
try:
allowed_values = custom_fields['custom_field']['allowed_values']
for value in allowed_values:
if 'self' not in value:
continue
self_url = value['self']
base_url = self._get_base_url_from_url_path(self_url)
if base_url != self._base_url:
value['self'] = self._update_base_url_in_url_path(self_url, self._base_url)
return custom_fields
except KeyError:
return False
allowed_values = custom_fields['custom_field']['allowed_values']
for value in allowed_values:
if 'self' not in value:
continue
self_url = value['self']
base_url = self._get_base_url_from_url_path(self_url)
if base_url != self._base_url:
value['self'] = self._update_base_url_in_url_path(self_url, self._base_url)
return custom_fields

def _get_custom_fields_for_issue(self, issue_id, action_result):

Expand All @@ -542,8 +539,9 @@ def _get_custom_fields_for_issue(self, issue_id, action_result):
{}".format(error_message)
return action_result.set_status(phantom.APP_ERROR, error_text), None, None

custom_fields = self._validate_and_update_custom_fields_url(custom_fields)
if not custom_fields:
try:
custom_fields = self._validate_and_update_custom_fields_url(custom_fields)
except KeyError:
return action_result.set_status(phantom.APP_ERROR, "Unable to validate custom fields"), None, None

return phantom.APP_SUCCESS, custom_fields, fields_meta
Expand Down

0 comments on commit 0196739

Please sign in to comment.