General optimations and debugging

This commit is contained in:
2025-07-08 13:50:23 +02:00
parent cb29a479b3
commit 36ff93e64e
69 changed files with 425 additions and 290 deletions

View File

@@ -39,7 +39,7 @@ def compare_application_keys(applications, defaults, source_file):
default_keys = recursive_keys(default_conf)
for key in app_keys:
if key.startswith("credentials."):
if key.startswith("credentials"):
continue # explicitly ignore credentials
if key not in default_keys:
errors.append(f"{source_file}: Missing default for {app_id}: {key}")