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 KeyManager(
///
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
+}