From f4f7af55ff91f83738c99a5955fe9855ba429204 Mon Sep 17 00:00:00 2001 From: fcaffieri Date: Fri, 22 May 2026 19:24:53 -0300 Subject: [PATCH] Add wait for multi-node delay configurations --- .github/workflows/check_integration_tools.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/check_integration_tools.yaml b/.github/workflows/check_integration_tools.yaml index 3507dc90..2835af72 100644 --- a/.github/workflows/check_integration_tools.yaml +++ b/.github/workflows/check_integration_tools.yaml @@ -481,6 +481,18 @@ jobs: exit 1 " + - name: Multi-node cluster warm-up wait + if: matrix.deployment_type == 'multi-node' + run: | + echo "Waiting 90s for multi-node OpenSearch cluster to reach steady state..." + sleep 90 + DEPLOYMENT="${{ matrix.deployment_type }}" + ssh ${{ env.SSH_OPTS }} "${{ env.REMOTE }}" " + cd /tmp/wazuh-docker/${DEPLOYMENT} + echo '=== Container status after warm-up ===' + sudo docker compose ps + " + # ----------------------------------------------------------------------- # Run integration tests # -----------------------------------------------------------------------