Skip to content

Commit

Permalink
default to basic auth
Browse files Browse the repository at this point in the history
with new jira 3.0.1 auth stopped working and has issues with to many params underneath. Using `basic_auth` seem to be more stable approach. See also pycontribs/jira#1035
  • Loading branch information
k3muri84 authored May 14, 2021
1 parent 4425584 commit 34aa8ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion generate-changelog.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
configure authentication, see jira module docs for more auth modes
https://jira.readthedocs.io/en/latest/examples.html#authentication
"""
jira = JIRA(server=(jira_server), auth=('changelogbot', 'cryp71cp455w0rd'))
jira = JIRA(server=(jira_server), basic_auth=('changelogbot', 'cryp71cp455w0rd'))

changelogFilename = "CHANGELOG.md"

Expand Down

0 comments on commit 34aa8ba

Please sign in to comment.