From c561f2f548ad6f777128c6c6183a0f1a76891bbc Mon Sep 17 00:00:00 2001 From: Matthew Grotke Date: Thu, 11 Jun 2026 02:01:06 -0400 Subject: [PATCH] Development --- docker/routlin-dash/app/config_utils.py | 3 --- docker/routlin-dash/app/settings.py | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/docker/routlin-dash/app/config_utils.py b/docker/routlin-dash/app/config_utils.py index d3e23fe..76304e6 100644 --- a/docker/routlin-dash/app/config_utils.py +++ b/docker/routlin-dash/app/config_utils.py @@ -22,10 +22,7 @@ HEALTH_FILE = f'{CONFIGS_DIR}/.health' DNS_METRICS_DB = f'{CONFIGS_DIR}/.dns-metrics' DNS_QUERIES_DB = f'{CONFIGS_DIR}/.dns-queries' BLOCKLISTS_DIR = f'{CONFIGS_DIR}/blocklists' -PRODUCT_NAME = _settings.product_name() WEB_APP_DISPLAY_NAME = _settings.web_app_display_name() -DASHB_TIMER_NAME = f'{PRODUCT_NAME}-dashboard-queue' -DDNS_TIMER_NAME = f'{PRODUCT_NAME}-ddns-update' DASHB_INTERVAL_SECS = 30 QUEUE_MAX_LINES = 50 diff --git a/docker/routlin-dash/app/settings.py b/docker/routlin-dash/app/settings.py index d0a83af..5741284 100644 --- a/docker/routlin-dash/app/settings.py +++ b/docker/routlin-dash/app/settings.py @@ -7,7 +7,7 @@ def product_name(): def web_app_display_name(): edition = 'Pro' if is_pro() else 'CE' - return os.environ.get('WEB_APP_DISPLAY_NAME', f'{product_name().capitalize()}-{edition}') + return os.environ.get('WEB_APP_DISPLAY_NAME', f'{product_name().capitalize()}-{edition} Dashboard') def is_production():