From 978b8e100e371b510d5e20e898033fa40ce74c97 Mon Sep 17 00:00:00 2001 From: sam Date: Tue, 18 Mar 2025 15:03:03 +0100 Subject: [PATCH] remove unused MetricsAddress from config --- Foxnouns.Backend/Config.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/Foxnouns.Backend/Config.cs b/Foxnouns.Backend/Config.cs index b48a2c4..461e55e 100644 --- a/Foxnouns.Backend/Config.cs +++ b/Foxnouns.Backend/Config.cs @@ -26,7 +26,6 @@ public class Config public string MediaBaseUrl { get; init; } = null!; public string Address => $"http://{Host}:{Port}"; - public string MetricsAddress => $"http://{Host}:{Logging.MetricsPort}"; public LoggingConfig Logging { get; init; } = new(); public DatabaseConfig Database { get; init; } = new();