aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Server/Startup.cs
diff options
context:
space:
mode:
authorPatrick Barron <barronpm@gmail.com>2023-01-11 22:09:14 -0500
committerPatrick Barron <barronpm@gmail.com>2023-01-11 22:09:14 -0500
commit0f46eca6a4e9f4b400c7a08defd033ce834e2974 (patch)
tree6f16ffde1a1bcf0f129a0262287626dbbc3b6041 /Jellyfin.Server/Startup.cs
parent159e74ea09b623ab422c7000cb3621abd8de1118 (diff)
Minor cleanup in Startup class
Diffstat (limited to 'Jellyfin.Server/Startup.cs')
-rw-r--r--Jellyfin.Server/Startup.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Server/Startup.cs b/Jellyfin.Server/Startup.cs
index 5996b3e30..f89f81c76 100644
--- a/Jellyfin.Server/Startup.cs
+++ b/Jellyfin.Server/Startup.cs
@@ -204,7 +204,7 @@ namespace Jellyfin.Server
endpoints.MapControllers();
if (_serverConfigurationManager.Configuration.EnableMetrics)
{
- endpoints.MapMetrics("/metrics");
+ endpoints.MapMetrics();
}
endpoints.MapHealthChecks("/health");