Skip to content
This repository has been archived by the owner on Jul 9, 2024. It is now read-only.

Commit

Permalink
Update src/Middleware/ActivitySourceRegistry.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
baywet authored Nov 10, 2023
1 parent 3afe819 commit 1657eaa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Middleware/ActivitySourceRegistry.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ namespace Microsoft.Kiota.Http.HttpClientLibrary.Middleware;
/// </summary>
internal class ActivitySourceRegistry
{
private readonly ConcurrentDictionary<string, ActivitySource> _activitySources = new ();
private readonly ConcurrentDictionary<string, ActivitySource> _activitySources = new (StringComparer.OrdinalIgnoreCase);

/// <summary>
/// The default instance of the registry
Expand Down

0 comments on commit 1657eaa

Please sign in to comment.