Reamer commented on code in PR #4899:
URL: https://github.com/apache/zeppelin/pull/4899#discussion_r1843313609
##########
bin/zeppelin.sh:
##########
@@ -121,7 +121,9 @@ if [[ "${USE_HADOOP}" != "false" ]]; then
echo "Please specify HADOOP_CONF_DIR if USE_HADOOP is true"
else
ZEPPELIN_CLASSPATH+=":${HADOOP_CONF_DIR}"
- if ! [ -x "$(command -v hadoop)" ]; then
+ if [ -n "${HADOOP_HOME}" ]; then
+ ZEPPELIN_CLASSPATH+=":`${HADOOP_HOME}/bin/hadoop classpath`"
Review Comment:
```suggestion
ZEPPELIN_CLASSPATH+=":`${HADOOP_HOME}/bin/hadoop classpath`"
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]