refactor(config): retire RuntimeSettingsCompat host usage

This commit is contained in:
jxxghp
2026-08-26 15:55:21 +08:00
parent cdab54254d
commit 9dbe424c3d
162 changed files with 1966 additions and 1745 deletions
+1 -1
View File
@@ -62,7 +62,7 @@ def _enabled_keys() -> FrozenSet[str]:
:return: 标识集合
"""
configured = get_runtime_setting("DEPRECATION_ENABLED") or ""
configured = get_runtime_setting('DEPRECATION_ENABLED') or ""
return frozenset(item.strip() for item in str(configured).split(",") if item.strip())