Development

This commit is contained in:
Matthew Grotke 2026-06-09 22:11:09 -04:00
parent 9b2fcdf914
commit 96cda68c54
2 changed files with 0 additions and 6 deletions

View file

@ -1,7 +1,6 @@
import json
import config_utils
import factory
import mod_metrics
from pages.overview.view import load_dns_metrics, _dns_providers_table
_PERIOD_OPTIONS = [

View file

@ -1,10 +1,8 @@
import json
import os
import threading
from datetime import datetime
import config_utils
import factory
import mod_dns_queries
from pages.ddns.view import public_ip_info
from pages.dhcpleases.view import live_dhcp_leases
@ -246,9 +244,6 @@ def bl_last_update():
def collect_tokens(cfg):
if has_query_logging(cfg):
threading.Thread(target=mod_dns_queries.collect, args=(cfg,), daemon=True).start()
tokens = config_utils.collect_layout_tokens(cfg)
non_vpn_vlans = [v for v in cfg.get('vlans', []) if not v.get('is_vpn')]
dns = cfg.get('upstream_dns', {})