From f48496b2cf1189f5deffff6c0acc38ee4c1fe341 Mon Sep 17 00:00:00 2001 From: "Jens L." Date: Wed, 21 May 2025 19:42:15 +0200 Subject: [PATCH] lifecycle: fix arguments not being passed to worker command (#14574) --- lifecycle/ak | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lifecycle/ak b/lifecycle/ak index 7a49723616..e4f214f3a8 100755 --- a/lifecycle/ak +++ b/lifecycle/ak @@ -83,7 +83,8 @@ if [[ "$1" == "server" ]]; then run_authentik elif [[ "$1" == "worker" ]]; then set_mode "worker" - check_if_root "python -m manage worker" + shift + check_if_root "python -m manage worker $@" elif [[ "$1" == "worker-status" ]]; then wait_for_db celery -A authentik.root.celery flower \