From d50e127e7dbfef60edd69b6ef3b39e2ba577bf40 Mon Sep 17 00:00:00 2001 From: Pablo Andres Fuente Date: Thu, 26 Jun 2014 18:08:06 -0300 Subject: [PATCH] Removing the Blazar API health check Removing the health check of the Blazar API performed in the pre_test_hook, because the Blazar API is not started at the moment of the check. Change-Id: I826f824790ce305c9d41a898ef1b38a74489f869 --- .../files/jenkins_job_builder/config/blazar.yaml | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/modules/openstack_project/files/jenkins_job_builder/config/blazar.yaml b/modules/openstack_project/files/jenkins_job_builder/config/blazar.yaml index 6264432101..1d940222ad 100644 --- a/modules/openstack_project/files/jenkins_job_builder/config/blazar.yaml +++ b/modules/openstack_project/files/jenkins_job_builder/config/blazar.yaml @@ -31,16 +31,6 @@ cp $BLAZAR_DEVSTACK_BASE/extras.d/* $DEVSTACK_BASE/extras.d # Install blazar tempest integration - # How many seconds to wait for the API to be responding before giving up - API_RESPONDING_TIMEOUT=20 - - if ! timeout ${API_RESPONDING_TIMEOUT} sh -c "while ! curl -s http://127.0.0.1:1234/ 2>/dev/null | grep -q 'Authentication required' ; do sleep 1; done"; then - echo "Blazar API failed to respond within ${API_RESPONDING_TIMEOUT} seconds" - exit 1 - fi - - echo "Successfully contacted Blazar API" - # Copying Tempest test suites BLAZAR_TEMPEST_DIR=$BLAZAR_BASE/contrib/tempest TEMPEST_DIR=${TEMPEST_DIR:-/opt/stack/new/tempest}