Skip to content

Commit

Permalink
Add an option to disable SSL verification for Jira
Browse files Browse the repository at this point in the history
My connections were getting rejected (go figure). This fixed it.
    jira.verify_ssl = False

The default behaviour remains unchanged, so this shouldn't break
anything for anyone whose SSL was already working, or who was connecting
over HTTP.
  • Loading branch information
mavant committed Jan 7, 2015
1 parent 28c27d0 commit 3735446
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions bugwarrior/services/jira.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ def __init__(self, *args, **kw):
options={
'server': self.config_get('base_uri'),
'rest_api_version': 'latest',
'verify': self.config_get_default('verify_ssl', default=None, to_type=asbool),
},
basic_auth=(self.username, password)
)
Expand Down

0 comments on commit 3735446

Please sign in to comment.