mirror of
https://github.com/Caraxi/mare.server.git
synced 2025-12-15 01:54:15 +01:00
fix default metrics port for server
This commit is contained in:
parent
9eb5967935
commit
d83e4e060f
1 changed files with 1 additions and 1 deletions
|
|
@ -271,7 +271,7 @@ public class Startup
|
||||||
|
|
||||||
app.UseWebSockets();
|
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();
|
metricServer.Start();
|
||||||
|
|
||||||
app.UseAuthentication();
|
app.UseAuthentication();
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue