From a2cd06664c9dacb4493a8ea4ee8a2c857835a078 Mon Sep 17 00:00:00 2001 From: Deckard Date: Mon, 13 Oct 2025 16:16:53 -0400 Subject: [PATCH] remove client data timeout - wait indefinitely until complete --- scripts/deploy-and-check.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/scripts/deploy-and-check.sh b/scripts/deploy-and-check.sh index 65920a5..eaf5fc7 100755 --- a/scripts/deploy-and-check.sh +++ b/scripts/deploy-and-check.sh @@ -262,8 +262,9 @@ deploy_stack() { docker compose --env-file "$SERVICES_ENV_FILE" -f ./docker-compose-azerothcore-services.yml up -d # Wait for client data extraction - print_status "INFO" "Waiting for client data download and extraction (this may take 10-20 minutes)..." - wait_for_service "Client Data" 120 "docker logs ac-client-data 2>/dev/null | grep -q 'Game data setup complete'" + print_status "INFO" "Waiting for client data download and extraction (this may take 15-25 minutes)..." + 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_service "World Server" 24 "check_container_health ac-worldserver"