We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2e68fe commit 2391123Copy full SHA for 2391123
src/app/environment.py
@@ -25,7 +25,7 @@ class Settings(BaseSettings):
25
jira_base_url: str = "https://mozit-test.atlassian.net/"
26
jira_issue_url: str = f"{jira_base_url}browse/%s"
27
jira_username: str
28
- jira_password: str
+ jira_api_key: str
29
30
# Bugzilla
31
bugzilla_base_url: str = "https://bugzilla-dev.allizom.org"
src/jbi/services.py
@@ -16,7 +16,7 @@ def get_jira():
16
return Jira(
17
url=settings.jira_base_url,
18
username=settings.jira_username,
19
- password=settings.jira_password,
+ password=settings.jira_api_key,
20
)
21
22
0 commit comments