Commit c4e60f42 authored by Noel Alonso's avatar Noel Alonso
Browse files

Corrige problema de sintaxis

parent 9d4a7e0a
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -192,12 +192,12 @@ variables:
        RETRIES=$((RETRIES-=1));
        RESPONSE="$(curl -sS -u ${ELASTIC_USER}:${ELASTIC_USER_PASS} docker:9200/_cat/health?h=status || :)";
        echo "Waiting for elasticsearch server, ${RETRIES} remaining attempts... Last output:";
      done
      if [ "$RESPONSE" != "green" ]
      done;
      if [ "$RESPONSE" != "green" ];
      then
        echo "Elasticsearch logs:"
        docker logs -n 100 es6-1
      fi
      fi;
  after_script:
    - rm -rf .m2/repository/es
    - docker stop user oauth postgres es6-1