Browse Source

Merge pull request #1880 from marranica/patch-2

Fixed typo in Vault ClientId configuration value from "your-clien-id" to "your-client-id" on Catalog and Ordering API
pull/1881/head
Tarun Jain 2 years ago
committed by GitHub
parent
commit
91c71528f6
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions
  1. +2
    -2
      src/Services/Catalog/Catalog.API/appsettings.json
  2. +1
    -1
      src/Services/Ordering/Ordering.API/appsettings.json

+ 2
- 2
src/Services/Catalog/Catalog.API/appsettings.json View File

@ -22,9 +22,9 @@
"UseVault": false, "UseVault": false,
"Vault": { "Vault": {
"Name": "eshop", "Name": "eshop",
"ClientId": "your-clien-id",
"ClientId": "your-client-id",
"ClientSecret": "your-client-secret" "ClientSecret": "your-client-secret"
} }
} }

+ 1
- 1
src/Services/Ordering/Ordering.API/appsettings.json View File

@ -26,7 +26,7 @@
"UseVault": false, "UseVault": false,
"Vault": { "Vault": {
"Name": "eshop", "Name": "eshop",
"ClientId": "your-clien-id",
"ClientId": "your-client-id",
"ClientSecret": "your-client-secret" "ClientSecret": "your-client-secret"
} }
} }

Loading…
Cancel
Save