Skip to content

Commit

Permalink
ARROW-8016: [Developer] Fix jira-python deprecation warning in merge_…
Browse files Browse the repository at this point in the history
…arrow_pr.py

This squelches the warning for me. I merged a PR using this revision

Closes #6552 from wesm/ARROW-8016 and squashes the following commits:

dc9a265 <Wes McKinney> Fix jira-python deprecation warning

Authored-by: Wes McKinney <wesm+git@apache.org>
Signed-off-by: Wes McKinney <wesm+git@apache.org>
  • Loading branch information
wesm committed Mar 6, 2020
1 parent fb4a7f2 commit 5ffbf0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dev/merge_arrow_pr.py
Original file line number Diff line number Diff line change
Expand Up @@ -518,7 +518,7 @@ def get_credentials(cmd):

def connect_jira(cmd):
try:
return jira.client.JIRA({'server': JIRA_API_BASE},
return jira.client.JIRA(options={'server': JIRA_API_BASE},
basic_auth=get_credentials(cmd))
except jira.exceptions.JIRAError as e:
if "CAPTCHA_CHALLENGE" in e.text:
Expand Down

0 comments on commit 5ffbf0a

Please sign in to comment.