Skip to content

Commit

Permalink
PAPP-33712: address review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
mctonderski-splunk committed Sep 19, 2024
1 parent 6d15571 commit 158d063
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions jira.json
Original file line number Diff line number Diff line change
Expand Up @@ -87,13 +87,13 @@
"custom_field_enumeration": {
"data_type": "boolean",
"order": 10,
"description": "Disable Field Enumeration",
"description": "Custom Field Enumeration",
"default": false
},
"internal_address_behind_proxy": {
"data_type": "string",
"order": 11,
"description": "URL address of JIRA service behind proxy (To be replaced in order to properly access)"
"description": "URL address of the JIRA service behind the proxy (to be replaced for proper access)"
}
},
"actions": [
Expand Down
1 change: 0 additions & 1 deletion jira_connector.py
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,6 @@ def _list_projects(self, param):

@staticmethod
def _replace_internal_with_proxy_url(value, internal_address, proxy_address):
# If the value is a string and contains the internal address, replace it with the proxy address
if isinstance(value, str) and internal_address in value:
return value.replace(internal_address, proxy_address)
return value
Expand Down

0 comments on commit 158d063

Please sign in to comment.