Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/avni-work/STRR into main
Browse files Browse the repository at this point in the history
  • Loading branch information
avni-work committed Oct 11, 2024
2 parents 55ab410 + cc7b334 commit a77ca4c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions queue_services/strr-pay/src/strr_pay/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ class Config: # pylint: disable=too-few-public-methods

PROJECT_ROOT = os.path.abspath(os.path.dirname(__file__))

PAYMENT_SVC_URL = os.getenv("PAYMENT_SVC_URL", "")
PAYMENT_SVC_URL = os.getenv("PAY_API_URL", "") + os.getenv("PAY_API_VERSION", "")

SENTRY_DSN = os.getenv("SENTRY_DSN", None)

Expand All @@ -92,8 +92,8 @@ class Config: # pylint: disable=too-few-public-methods
PUBLISHER_AUDIENCE = os.getenv(
"PUBLISHER_AUDIENCE", "https://pubsub.googleapis.com/google.pubsub.v1.Publisher"
)
SUB_AUDIENCE = os.getenv("SUB_AUDIENCE", "")
SUB_SERVICE_ACCOUNT = os.getenv("SUB_SERVICE_ACCOUNT", "")
# SUB_AUDIENCE = os.getenv("SUB_AUDIENCE", "")
# SUB_SERVICE_ACCOUNT = os.getenv("SUB_SERVICE_ACCOUNT", "")

SQLALCHEMY_TRACK_MODIFICATIONS = False

Expand Down

0 comments on commit a77ca4c

Please sign in to comment.