From 7ea127f9cb04a00731682e9021fd3f75b2da229b Mon Sep 17 00:00:00 2001 From: sstent Date: Mon, 27 Apr 2026 10:10:23 -0700 Subject: [PATCH] test(entrypoint): disable consul registration to isolate leadership issue --- entrypoint.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/entrypoint.sh b/entrypoint.sh index ce002fa..2ae7a0e 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -129,15 +129,15 @@ while true; do # === WE ARE PRIMARY === if [ "${NAVIDROME_PID}" -eq 0 ] || ! kill -0 "${NAVIDROME_PID}" 2>/dev/null; then start_app - register_service + # register_service fi - pass_ttl + # pass_ttl else # === WE ARE REPLICA === if [ "${NAVIDROME_PID}" -gt 0 ]; then echo "Lost leadership. Demoting..." stop_app - deregister_service + # deregister_service fi fi sleep 10