removed telemetry switch from configuration
All checks were successful
CI / build (push) Successful in 2m52s

This commit is contained in:
2026-04-30 18:43:22 +08:00
parent ab2a06e810
commit bfce91905f
14 changed files with 20 additions and 58 deletions

View File

@@ -21,7 +21,6 @@ public class Configuration {
String serverPath;
boolean proxyProtocolEnabled;
List<Cidr> trustedProxyIPs;
boolean enableTelemetry;
int incomingConnectionsBacklogSize;
@NonNull
EventExecutor eventExecutor;
@@ -151,7 +150,6 @@ public class Configuration {
}
public static Configuration of(
boolean enableTelemetry,
String host,
int port,
boolean proxyProtocolEnabled,
@@ -173,7 +171,6 @@ public class Configuration {
serverPath != null && !serverPath.isEmpty() && !serverPath.equals("/") ? serverPath : null,
proxyProtocolEnabled,
trustedProxyIPs,
enableTelemetry,
incomingConnectionsBacklogSize,
eventExecutor,
rateLimiter,