From b4393028bafbb04abad589f0d36225e48316f364 Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Thu, 14 Sep 2023 15:32:46 -0600 Subject: [PATCH] Set default network interfaces to empty --- frigate/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frigate/config.py b/frigate/config.py index f98da3855..9d2fda0d1 100644 --- a/frigate/config.py +++ b/frigate/config.py @@ -107,7 +107,7 @@ class StatsConfig(FrigateBaseModel): class TelemetryConfig(FrigateBaseModel): network_interfaces: List[str] = Field( - default=["eth", "enp", "eno", "ens", "wl", "lo"], + default=[], title="Enabled network interfaces for bandwidth calculation.", ) stats: StatsConfig = Field(