From 4ecb5712917850d76ac4420726b3fdc57f5942f1 Mon Sep 17 00:00:00 2001 From: Marc 'risson' Schmitt Date: Thu, 11 Jan 2024 15:51:54 +0100 Subject: [PATCH] fix reconcile app decorator Signed-off-by: Marc 'risson' Schmitt --- authentik/blueprints/tests/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/authentik/blueprints/tests/__init__.py b/authentik/blueprints/tests/__init__.py index 138e02242..e407db13a 100644 --- a/authentik/blueprints/tests/__init__.py +++ b/authentik/blueprints/tests/__init__.py @@ -38,7 +38,7 @@ def reconcile_app(app_name: str): def wrapper(*args, **kwargs): config = apps.get_app_config(app_name) if isinstance(config, ManagedAppConfig): - config.reconcile() + config.ready() return func(*args, **kwargs) return wrapper