Commit 4801ab6e authored by Noel Alonso's avatar Noel Alonso
Browse files

Elimina --silent del curl

parent b4f94d40
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -178,7 +178,7 @@ stages:
      until [ "$RESPONSE" = "green" ];
      do
        echo "HEALTH_CHECK";
        RESPONSE="$(curl --silent -u \"${ELASTIC_USER}:${ELASTIC_USER_PASS}\" \"${HEALTH_CHECK_URL}\")";
        RESPONSE="$(curl -u \"${ELASTIC_USER}:${ELASTIC_USER_PASS}\" \"${HEALTH_CHECK_URL}\")";
        echo "Waiting for elasticsearch server, remaining attempts...";
        sleep 5;
      done;