From 674c2682bb503a6c637bfaee51c562177930a4ec Mon Sep 17 00:00:00 2001 From: Filip W Date: Fri, 13 Oct 2023 16:29:05 +0200 Subject: [PATCH] Fixed typos --- .../Services/Default/KeyManagement/KeyManager.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/IdentityServer/Services/Default/KeyManagement/KeyManager.cs b/src/IdentityServer/Services/Default/KeyManagement/KeyManager.cs index a17066628..94d1798a2 100644 --- a/src/IdentityServer/Services/Default/KeyManagement/KeyManager.cs +++ b/src/IdentityServer/Services/Default/KeyManagement/KeyManager.cs @@ -65,7 +65,7 @@ public class KeyManager : IKeyManager /// public async Task> GetCurrentKeysAsync() { - using var activity = Tracing.ServiceActivitySource.StartActivity("KeyManageer.GetCurrentKeys"); + using var activity = Tracing.ServiceActivitySource.StartActivity("KeyManager.GetCurrentKeys"); _logger.LogTrace("Getting the current key."); @@ -88,7 +88,7 @@ public async Task> GetCurrentKeysAsync() /// public async Task> GetAllKeysAsync() { - using var activity = Tracing.ServiceActivitySource.StartActivity("KeyManageer.GetAllKeys"); + using var activity = Tracing.ServiceActivitySource.StartActivity("KeyManager.GetAllKeys"); _logger.LogTrace("Getting all the keys."); @@ -685,4 +685,4 @@ internal bool CanBeUsedAsCurrentSigningKey(KeyContainer key, bool ignoreActiveDe return true; } -} \ No newline at end of file +}