Procházet zdrojové kódy

Bump up Elasticsearch test memory setting

Tianon Gravi před 7 roky
rodič
revize
4c08ac30b4
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      test/tests/elasticsearch-basics/run.sh

+ 1 - 1
test/tests/elasticsearch-basics/run.sh

@@ -13,7 +13,7 @@ clientImage='buildpack-deps:stretch-curl'
 
 
 # Create an instance of the container-under-test
 # Create an instance of the container-under-test
 # (explicitly setting a low memory limit since the image defaults to 2GB)
 # (explicitly setting a low memory limit since the image defaults to 2GB)
-cid="$(docker run -d -e ES_JAVA_OPTS='-Xms64m -Xmx64m' "$image")"
+cid="$(docker run -d -e ES_JAVA_OPTS='-Xms128m -Xmx128m' "$image")"
 trap "docker rm -vf $cid > /dev/null" EXIT
 trap "docker rm -vf $cid > /dev/null" EXIT
 
 
 _request() {
 _request() {