adjust metrics server ports

This commit is contained in:
Stanley Dimant
2022-08-26 02:40:23 +02:00
parent ace31926db
commit bc9fc95e2f
2 changed files with 2 additions and 2 deletions

View File

@@ -146,7 +146,7 @@ namespace MareSynchronosServer
app.UseWebSockets(); app.UseWebSockets();
var metricServer = new KestrelMetricServer(4981); var metricServer = new KestrelMetricServer(4980);
metricServer.Start(); metricServer.Start();
app.UseAuthentication(); app.UseAuthentication();

View File

@@ -92,7 +92,7 @@ public class Startup
app.UseRouting(); app.UseRouting();
var metricServer = new KestrelMetricServer(4982); var metricServer = new KestrelMetricServer(4981);
metricServer.Start(); metricServer.Start();
app.UseAuthentication(); app.UseAuthentication();