Skip to content

Commit

Permalink
fix report url (#3073)
Browse files Browse the repository at this point in the history
  • Loading branch information
bolyachevets authored Oct 7, 2024
1 parent e685f85 commit d873fd9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion queue_services/account-mailer/src/account_mailer/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ class _Config(): # pylint: disable=too-few-public-methods
REPORT_API_URL = os.getenv('REPORT_API_URL', '')
REPORT_API_VERSION = os.getenv('REPORT_API_VERSION', '')
REPORT_API_URL = REPORT_API_URL + REPORT_API_VERSION
REPORT_API_BASE_URL = f'{os.getenv("REPORT_API_URL")}/reports'
REPORT_API_BASE_URL = f'{REPORT_API_URL}/reports'

# PUB/SUB - SUB: account-mailer-dev
# If blank in PUB/SUB, this should match the https endpoint the subscription is pushing to.
Expand Down

0 comments on commit d873fd9

Please sign in to comment.