From 9679be39fa7a66da2c130118670650161a2f3265 Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Sat, 16 Oct 2021 14:28:05 +0200 Subject: [PATCH] lifecycle: bump celery healthcheck to 5s timeout Signed-off-by: Jens Langhammer #1627 --- lifecycle/ak | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lifecycle/ak b/lifecycle/ak index 06b80c3a4..adcc29a8f 100755 --- a/lifecycle/ak +++ b/lifecycle/ak @@ -53,7 +53,7 @@ elif [[ "$1" == "healthcheck" ]]; then if [[ $mode == "server" ]]; then curl --user-agent "goauthentik.io lifecycle Healthcheck" -I http://localhost:9000/-/health/ready/ elif [[ $mode == "worker" ]]; then - celery -A authentik.root.celery inspect ping -d celery@$HOSTNAME + celery -A authentik.root.celery inspect ping -d celery@$HOSTNAME --timeout 5 -j fi else python -m manage "$@"