From 22079f183d5c251e8af53aa97ac4e46c83b42aa5 Mon Sep 17 00:00:00 2001 From: Jaume Marhuenda Date: Sat, 31 Aug 2019 22:26:44 -0700 Subject: [PATCH] change hive test version to 3.1.2 (#67) --- scripts/integration.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/integration.sh b/scripts/integration.sh index 381fabc..59ede94 100644 --- a/scripts/integration.sh +++ b/scripts/integration.sh @@ -27,7 +27,7 @@ function wait_for_hive () { function install_deps() { if [ ! -d "dhive" ] ; then git clone https://github.com/beltran/dhive - else + else cd dhive git fetch && git reset --hard origin/master cd .. @@ -37,8 +37,8 @@ function install_deps() { sed -i.bak 's/python3/python3.6/g' ./Makefile python3.6 -m pip install --user -r requirements.txt - sed -i.bak 's/hive_version.*/hive_version = 3.1.1/g' ./config/hive.cfg - sed -i.bak 's/hive_version.*/hive_version = 3.1.1/g' ./config/hive_and_kerberos.cfg + sed -i.bak 's/hive_version.*/hive_version = 3.1.2/g' ./config/hive.cfg + sed -i.bak 's/hive_version.*/hive_version = 3.1.2/g' ./config/hive_and_kerberos.cfg sed -i.bak 's/hive.server2.thrift.sasl.qop.*/hive.server2.thrift.sasl.qop = auth-conf/g' ./config/hive_and_kerberos.cfg popd }