Browse Source
Fix Dapr extension services name not matching issue, Applications services name changed from capital letters to lower-case (#1335)
Co-authored-by: xiaobai <xiaobai@qq.com>
pull/1516/head
redcatH
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/Microsoft.Tye.Extensions/Dapr/DaprExtensionConfigurationReader.cs
|
|
|
@ -17,7 +17,7 @@ namespace Microsoft.Tye.Extensions.Dapr |
|
|
|
|
|
|
|
if (rawConfiguration.TryGetValue("services", out var servicesObject) && servicesObject is Dictionary<string, object> rawServicesConfiguration) |
|
|
|
{ |
|
|
|
var services = new Dictionary<string, DaprExtensionServiceConfiguration>(); |
|
|
|
var services = new Dictionary<string, DaprExtensionServiceConfiguration>(StringComparer.OrdinalIgnoreCase); |
|
|
|
|
|
|
|
foreach (var kvp in rawServicesConfiguration) |
|
|
|
{ |
|
|
|
|