Repository: incubator-zeppelin Updated Branches: refs/heads/master 913bc0955 -> 96b720239
ZEPPELIN-383-Additional_modifications ] Typo fixes #412 fix :: bin/interpreter.sh ZEPPELIN_CLASSPATH_OVERRIDE**SS** -> ZEPPELIN_CLASSPATH_OVERRIDE**S** Author: Chae-Sung Lim <[email protected]> Closes #422 from cloverhearts/ZEPPELIN-383-Additional_modifications and squashes the following commits: 90a267e [Chae-Sung Lim] ZEPPELIN-383-Additional_modifications Project: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/commit/96b72023 Tree: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/tree/96b72023 Diff: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/diff/96b72023 Branch: refs/heads/master Commit: 96b720239dda3c0f4c12345a22eba64015c203a1 Parents: 913bc09 Author: Chae-Sung Lim <[email protected]> Authored: Thu Nov 12 16:11:34 2015 +0900 Committer: Lee moon soo <[email protected]> Committed: Fri Nov 13 09:55:38 2015 +0900 ---------------------------------------------------------------------- bin/interpreter.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/blob/96b72023/bin/interpreter.sh ---------------------------------------------------------------------- diff --git a/bin/interpreter.sh b/bin/interpreter.sh index 7a21b3e..28424c8 100755 --- a/bin/interpreter.sh +++ b/bin/interpreter.sh @@ -79,7 +79,7 @@ if [[ "${INTERPRETER_ID}" == "spark" ]]; then ZEPPELIN_CLASSPATH=${SPARK_APP_JAR} export PYTHONPATH="$SPARK_HOME/python/:$PYTHONPATH" - export PYTHONPATH="$SPARK_HOME/python/lib/py4j-0.8.2.1-src.zip:$PYTHONPATH" + export PYTHONPATH="$SPARK_HOME/python/lib/py4j-0.8.2.1-src.zip:$PYTHONPATH" else # add Hadoop jars into classpath if [[ -n "${HADOOP_HOME}" ]]; then @@ -121,9 +121,9 @@ fi CLASSPATH+=":${ZEPPELIN_CLASSPATH}" if [[ -n "${SPARK_SUBMIT}" ]]; then - ${SPARK_SUBMIT} --class ${ZEPPELIN_SERVER} --driver-class-path "${ZEPPELIN_CLASSPATH_OVERRIDESS}:${CLASSPATH}" --driver-java-options "${JAVA_INTP_OPTS}" ${SPARK_SUBMIT_OPTIONS} ${SPARK_APP_JAR} ${PORT} & + ${SPARK_SUBMIT} --class ${ZEPPELIN_SERVER} --driver-class-path "${ZEPPELIN_CLASSPATH_OVERRIDES}:${CLASSPATH}" --driver-java-options "${JAVA_INTP_OPTS}" ${SPARK_SUBMIT_OPTIONS} ${SPARK_APP_JAR} ${PORT} & else - ${ZEPPELIN_RUNNER} ${JAVA_INTP_OPTS} -cp ${ZEPPELIN_CLASSPATH_OVERRIDESS}:${CLASSPATH} ${ZEPPELIN_SERVER} ${PORT} & + ${ZEPPELIN_RUNNER} ${JAVA_INTP_OPTS} -cp ${ZEPPELIN_CLASSPATH_OVERRIDES}:${CLASSPATH} ${ZEPPELIN_SERVER} ${PORT} & fi pid=$!
