You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@ssbarnea : I suppose you misunderstood me. I don't suggest to add any new SSL functionality. It's about the misinterpretation of the 'verify' config param in config.py module. The verify parameter isn't strictly a boolean value. In fact it's allowed to pass a path to a directory with certificates or a path to a single certificate and this will be processed by OpenSSL.
If your Jira runs in an environment with your own trusted CA you will have to instantiate jira with passing 'verify' the path of a CA_BUNDLE file or directory with certificates of trusted CAs. See http://docs.python-requests.org/en/master/user/advanced/#ssl-cert-verification
Otherwise you will receive:
Unfortunately it doesn't work with the config.py module as well. The reason is the boolean assumption in line 85
Simple working solution is:
Maybe the boolean decision is imaginable in a more pythonic way ...?
The text was updated successfully, but these errors were encountered: