From c70bcfb292607d537919f0fe9b6145746e62031b Mon Sep 17 00:00:00 2001 From: Matthew Grotke Date: Thu, 11 Jun 2026 01:56:55 -0400 Subject: [PATCH] Development --- docker/routlin-dash/app/config_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/routlin-dash/app/config_utils.py b/docker/routlin-dash/app/config_utils.py index 4ab2a7f..d3e23fe 100644 --- a/docker/routlin-dash/app/config_utils.py +++ b/docker/routlin-dash/app/config_utils.py @@ -4,6 +4,7 @@ import sqlite3 as _sqlite3 from datetime import datetime, timezone from flask import session +import settings as _settings APP_DIR = _os.path.dirname(_os.path.abspath(__file__)) CONFIGS_DIR = _settings.routlin_location() DATA_DIR = '/data' @@ -21,7 +22,6 @@ 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' -import settings as _settings PRODUCT_NAME = _settings.product_name() WEB_APP_DISPLAY_NAME = _settings.web_app_display_name() DASHB_TIMER_NAME = f'{PRODUCT_NAME}-dashboard-queue'