Commit 34f67ae0 by Shwetha GS

ATLAS-1025 Set HIVE_HOME if hive is available in relative path to import hive…

ATLAS-1025 Set HIVE_HOME if hive is available in relative path to import hive script (svimal2106 via shwethags)
parent 99d51436
...@@ -78,8 +78,12 @@ if [ -f "${HIVE_CONF}/hive-env.sh" ]; then ...@@ -78,8 +78,12 @@ if [ -f "${HIVE_CONF}/hive-env.sh" ]; then
fi fi
if [ -z "$HIVE_HOME" ]; then if [ -z "$HIVE_HOME" ]; then
echo "Please set HIVE_HOME to the root of Hive installation" if [ -d "${BASEDIR}/../hive" ]; then
exit 1 HIVE_HOME=${BASEDIR}/../hive
else
echo "Please set HIVE_HOME to the root of Hive installation"
exit 1
fi
fi fi
HIVE_CP="${HIVE_CONF}" HIVE_CP="${HIVE_CONF}"
......
...@@ -6,6 +6,7 @@ INCOMPATIBLE CHANGES: ...@@ -6,6 +6,7 @@ INCOMPATIBLE CHANGES:
ALL CHANGES: ALL CHANGES:
ATLAS-1025 Set HIVE_HOME if hive is available in relative path to import hive script (svimal2106 via shwethags)
ATLAS-1009 Source HIVE_HOME and HIVE_CONF_DIR from hive_env.sh (svimal2106 via shwethags) ATLAS-1009 Source HIVE_HOME and HIVE_CONF_DIR from hive_env.sh (svimal2106 via shwethags)
ATLAS-847 UI: Audit versioning does not paginate details from Atlas server (Kalyanikashikar via shwethags) ATLAS-847 UI: Audit versioning does not paginate details from Atlas server (Kalyanikashikar via shwethags)
ATLAS-1004 Option to enable taxonomy feature (kevalbhatt18 via shwethags) ATLAS-1004 Option to enable taxonomy feature (kevalbhatt18 via shwethags)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment