-
-
Notifications
You must be signed in to change notification settings - Fork 884
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No way to tolerate SSLError complaining about self-signed certificate #1159
Comments
We have experienced similar issues. As an example
The mysterious thing is that When disabling verification with BUT the update can be performed using
NB we are interfacing an API gateway and have no access to logs for either the gateway or the target Jira server. |
I am in the process of testing a fix for this that allows you to provide the certificate authority for the server certificate and hope to have a pull request in tonight. If you want to just skip verification, you can do that by setting https://github.com/pycontribs/jira/blob/main/jira/client.py#L311 |
from #1202, we now allow align with |
Describe the bug
Creating a
JIRA
object for a Jira server that is set up with a self-signed certificate causesrequests
to raise:I did not find a way to configure the
jira
client to tolerate that.To Reproduce
Steps to reproduce the behavior:
Expected behavior
There is a way to have the
jira
client tolerate theSSLError
for the self-signed certificate.Stack Trace
The actual server DNS hostname has been replaced with
<jira_host>
.Version Information
Type of Jira instance:
Python Interpreter: Python 3.9.7
jira-python: master
OS: macOS
IPython (Optional): N/A
Other Dependencies: requests 2.26.0, urllib3 1.26.6
Additional context
N/A
The text was updated successfully, but these errors were encountered: