fix default metrics port for server

This commit is contained in:
rootdarkarchon
2022-12-27 14:02:49 +01:00
parent 9eb5967935
commit d83e4e060f

View File

@@ -271,7 +271,7 @@ public class Startup
app.UseWebSockets();
var metricServer = new KestrelMetricServer(config.GetValueOrDefault<int>(nameof(MareConfigurationBase.MetricsPort), 4981));
var metricServer = new KestrelMetricServer(config.GetValueOrDefault<int>(nameof(MareConfigurationBase.MetricsPort), 4980));
metricServer.Start();
app.UseAuthentication();