Skip to content

Commit 2391123

Browse files
author
Bryan Sieber
committed
From 'password' to 'api_key'
1 parent f2e68fe commit 2391123

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/app/environment.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class Settings(BaseSettings):
2525
jira_base_url: str = "https://mozit-test.atlassian.net/"
2626
jira_issue_url: str = f"{jira_base_url}browse/%s"
2727
jira_username: str
28-
jira_password: str
28+
jira_api_key: str
2929

3030
# Bugzilla
3131
bugzilla_base_url: str = "https://bugzilla-dev.allizom.org"

src/jbi/services.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def get_jira():
1616
return Jira(
1717
url=settings.jira_base_url,
1818
username=settings.jira_username,
19-
password=settings.jira_password,
19+
password=settings.jira_api_key,
2020
)
2121

2222

0 commit comments

Comments
 (0)