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
This commit is contained in:
Trinh Nguyen 2018-09-05 17:24:35 +09:00
parent 179b4e9bcf
commit 8744a8e903
1 changed files with 2 additions and 2 deletions

View File

@ -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