Commit 07eaf966 by Renzo Lucioni

Merge pull request #2679 from edx/renzo/ecomworker-jwt-issuer

Fix value of ecomworker JWT_ISSUER setting
parents eb78a7e7 aea24835
......@@ -49,7 +49,7 @@ ECOMMERCE_JWT_VERIFY_EXPIRATION: true
ECOMMERCE_JWT_DECODE_HANDLER: 'ecommerce.extensions.api.handlers.jwt_decode_handler'
ECOMMERCE_JWT_ISSUERS:
- '{{ ECOMMERCE_LMS_URL_ROOT }}/oauth2'
- 'ecommerce_worker'
- 'ecommerce_worker' # Must match the value of JWT_ISSUER configured for the ecommerce worker.
# Used to automatically configure OAuth2 Client
ECOMMERCE_SOCIAL_AUTH_EDX_OIDC_KEY : 'ecommerce-key'
......
......@@ -54,7 +54,7 @@ ECOMMERCE_WORKER_MAX_FULFILLMENT_RETRIES: 11
# Ecommerce Worker settings
ECOMMERCE_WORKER_JWT_SECRET_KEY: 'insecure-secret-key'
ECOMMERCE_WORKER_JWT_ISSUER: '{{ ecommerce_worker_service_name }}'
ECOMMERCE_WORKER_JWT_ISSUER: 'ecommerce_worker'
ECOMMERCE_WORKER_SERVICE_CONFIG:
BROKER_URL: '{{ ECOMMERCE_WORKER_BROKER_URL }}'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment