From f50d44792c6cf5e21cda4cbb10b5f61420125a98 Mon Sep 17 00:00:00 2001 From: Jens L Date: Sat, 24 Feb 2024 20:38:51 +0100 Subject: [PATCH] root: fix config loading after refactor during ruff migration (#8674) Signed-off-by: Jens Langhammer --- authentik/lib/config.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/authentik/lib/config.py b/authentik/lib/config.py index 6b21cc5da2..3336be0eac 100644 --- a/authentik/lib/config.py +++ b/authentik/lib/config.py @@ -200,6 +200,8 @@ class ConfigLoader: value = self.parse_uri(raw_value.value) elif not isinstance(raw_value, Attr): value = Attr(raw_value) + else: + value = raw_value root[key] = value return root