Commit 2f603e26 authored by Noel Alonso's avatar Noel Alonso
Browse files

Limpia código de before_script

parent 84b04693
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -177,8 +177,8 @@ stages:
      RESPONSE="";
      until [ "$RESPONSE" = "green" ];
      do
        RESPONSE="$(curl -sS -u \"${ELASTIC_USER}:${ELASTIC_USER_PASS}\" ${HEALTH_CHECK_URL} || :)";
        echo "Waiting for elasticsearch server, remaining attempts...";
        RESPONSE="$(curl -sS -u ${ELASTIC_USER}:${ELASTIC_USER_PASS} ${HEALTH_CHECK_URL} || :)";
        echo "Waiting for elasticsearch server, remaining attempts... Last output:";
        echo $RESPONSE;
        sleep 5;
      done;