From 66c530ea06d02f52464856bf4561c3a8aa5df4e5 Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Thu, 2 Dec 2021 15:06:14 +0100 Subject: [PATCH] outposts: always trigger outpost reconcile on startup Signed-off-by: Jens Langhammer --- authentik/outposts/apps.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/authentik/outposts/apps.py b/authentik/outposts/apps.py index 0ee7aa9d1..c4e9554ec 100644 --- a/authentik/outposts/apps.py +++ b/authentik/outposts/apps.py @@ -19,8 +19,9 @@ class AuthentikOutpostConfig(AppConfig): import_module("authentik.outposts.signals") import_module("authentik.outposts.managed") try: - from authentik.outposts.tasks import outpost_local_connection + from authentik.outposts.tasks import outpost_controller_all, outpost_local_connection outpost_local_connection.delay() + outpost_controller_all.delay() except ProgrammingError: pass