aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Sorokin <me@ch1p.io>2024-04-03 04:07:13 +0300
committerEvgeny Sorokin <me@ch1p.io>2024-04-03 04:07:13 +0300
commit376deb5610e29b0345f5e234d5bab746562810a8 (patch)
tree261d32d28c71d1431c7649eca3040f11502a0b7a
parentb08b2d3baa9433c1a603863f2f003f24be15000c (diff)
web_kbn: fix config parsing
-rwxr-xr-xbin/web_kbn.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/web_kbn.py b/bin/web_kbn.py
index add7af2..9a03d15 100755
--- a/bin/web_kbn.py
+++ b/bin/web_kbn.py
@@ -33,7 +33,7 @@ class WebKbnConfig(AppConfigUnit):
'listen_addr': cls._addr_schema(required=True),
'assets_public_path': {'type': 'string'},
'pump_addr': cls._addr_schema(required=True),
- 'cam_hls_host': cls._addr_schema(required=True, only_ip=True),
+ 'hls_local_host': cls._addr_schema(required=True, only_ip=True),
'inverter_grafana_url': {'type': 'string'},
'sensors_grafana_url': {'type': 'string'},
}