remove client data timeout - wait indefinitely until complete

This commit is contained in:
Deckard
2025-10-13 16:16:53 -04:00
parent 823addce71
commit a2cd06664c

View File

@@ -262,8 +262,9 @@ deploy_stack() {
docker compose --env-file "$SERVICES_ENV_FILE" -f ./docker-compose-azerothcore-services.yml up -d docker compose --env-file "$SERVICES_ENV_FILE" -f ./docker-compose-azerothcore-services.yml up -d
# Wait for client data extraction # Wait for client data extraction
print_status "INFO" "Waiting for client data download and extraction (this may take 10-20 minutes)..." print_status "INFO" "Waiting for client data download and extraction (this may take 15-25 minutes)..."
wait_for_service "Client Data" 120 "docker logs ac-client-data 2>/dev/null | grep -q 'Game data setup complete'" print_status "INFO" "Press Ctrl+C to exit if needed..."
wait_for_service "Client Data" 999999 "docker logs ac-client-data 2>/dev/null | grep -q 'Game data setup complete'"
# Wait for worldserver to be healthy # Wait for worldserver to be healthy
wait_for_service "World Server" 24 "check_container_health ac-worldserver" wait_for_service "World Server" 24 "check_container_health ac-worldserver"