Change ports from 4000/4001 to 4500/4501

This commit is contained in:
southseact-3d
2026-02-07 20:59:44 +00:00
parent efda260214
commit 99dc66f76c
7 changed files with 23 additions and 23 deletions

View File

@@ -118,7 +118,7 @@ check_service_status() {
fi
# Check if service responds to HTTP requests
if [ "$port" = "4000" ]; then
if [ "$port" = "4500" ]; then
if timeout 3 curl -s http://localhost:${port}/api/health > /dev/null 2>&1; then
diag_log "INFO" "HTTP endpoint responding"
else