From 8744a8e9038cb41ab7370d1f4e06125218140e3e Mon Sep 17 00:00:00 2001 From: Trinh Nguyen Date: Wed, 5 Sep 2018 17:24:35 +0900 Subject: [PATCH] Update test to use ElasticSearch 2.3.4 as docs says Searhlight docs and devstack plugin use ES 2.3.4 but the test-setup.sh file use 2.3.2. Change-Id: I53d957ac55f20c8ee05937968b38aa46dcd07471 Story: #2003665 Task: #26175 --- tools/test-setup.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/test-setup.sh b/tools/test-setup.sh index 71c1d108..1a910673 100755 --- a/tools/test-setup.sh +++ b/tools/test-setup.sh @@ -13,7 +13,7 @@ if [[ $VERSION_CODENAME = bionic ]]; then else sudo apt-get install -y default-jre fi -wget https://download.elastic.co/elasticsearch/release/org/elasticsearch/distribution/deb/elasticsearch/2.3.2/elasticsearch-2.3.2.deb -sudo dpkg -i elasticsearch-2.3.2.deb +wget https://download.elastic.co/elasticsearch/release/org/elasticsearch/distribution/deb/elasticsearch/2.3.4/elasticsearch-2.3.4.deb +sudo dpkg -i elasticsearch-2.3.4.deb # Make 'elasticsearch' binary callable from within functional tests sudo ln -s /usr/share/elasticsearch/bin/elasticsearch /usr/local/bin/elasticsearch