From 47287f7ee3adc2e8e196b952e4f36d6aca5f8e10 Mon Sep 17 00:00:00 2001 From: fcaffieri Date: Wed, 27 May 2026 18:12:02 -0300 Subject: [PATCH] Add sleep for dashboard to single and multi node test --- .github/workflows/check_integration_tools.yaml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/check_integration_tools.yaml b/.github/workflows/check_integration_tools.yaml index 2835af72..4067dffd 100644 --- a/.github/workflows/check_integration_tools.yaml +++ b/.github/workflows/check_integration_tools.yaml @@ -481,11 +481,15 @@ jobs: exit 1 " - - name: Multi-node cluster warm-up wait - if: matrix.deployment_type == 'multi-node' + - name: Cluster warm-up wait run: | - echo "Waiting 90s for multi-node OpenSearch cluster to reach steady state..." - sleep 90 + if [ "${{ matrix.deployment_type }}" = "multi-node" ]; then + WAIT=90 + else + WAIT=60 + fi + echo "Waiting ${WAIT}s for services to reach steady state..." + sleep $WAIT DEPLOYMENT="${{ matrix.deployment_type }}" ssh ${{ env.SSH_OPTS }} "${{ env.REMOTE }}" " cd /tmp/wazuh-docker/${DEPLOYMENT}