From 99e027171cc893d148a20b2f25182a16d4c99c9d Mon Sep 17 00:00:00 2001 From: Matthias Dellweg Date: Thu, 2 Jul 2026 16:27:15 +0200 Subject: [PATCH] Switch off dynaboxify This will revent dynaconf from creating their own versions of dicts and lists. The python saml2 library does not approve of it. --- pulpcore/app/settings.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pulpcore/app/settings.py b/pulpcore/app/settings.py index 6961b88f30..11b0542453 100644 --- a/pulpcore/app/settings.py +++ b/pulpcore/app/settings.py @@ -644,6 +644,7 @@ def saml2_settings_hook(settings): distributed_publication_retention_period_validator, ], post_hooks=(otel_middleware_hook, saml2_settings_hook), + dynaboxify=False, ) _logger = getLogger(__name__)