getsentry / sentry-jira

A Plugin for sentry that lets you create JIRA issues
Other
95 stars 32 forks source link

https://JIRA_URL/rest/api/2/priority matches the URL blacklist #79

Closed Grovespaz closed 8 years ago

Grovespaz commented 8 years ago

When setting up a project on the latest version of Sentry (8.0.1) it fails with the following exception: Error in request to https://JIRA_URL/rest/api/2/priority: https://JIRA_URL/rest/api/2/priority matches the URL blacklist

(where JIRA_URL is our Jira URL)

dcramer commented 8 years ago

This is likely going to be a common story for on-premise.

You need to change SENTRY_DISALLOWED_IPS. If your install is closed to the public, just set it to SENTRY_DISALLOWED_IPS = ().

Grovespaz commented 8 years ago

Thanks, modifying our SENTRY_DISALLOWED_IPS fixed it.