This is an automated email from the ASF dual-hosted git repository. jongyoul pushed a commit to branch branch-0.11 in repository https://gitbox.apache.org/repos/asf/zeppelin.git
commit 164a21bcd920b5bc5d0e66fd20626058824b6e17 Author: Jongyoul Lee <jongy...@gmail.com> AuthorDate: Wed Feb 28 00:17:14 2024 +0900 [HOTFIX] Escape envs when using `.conf` (#4715) (cherry picked from commit dd08a3966ef3b0b40f13d0291d7cac5ec3dd9f9c) --- bin/interpreter.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bin/interpreter.sh b/bin/interpreter.sh index 92dc091e8f..aaa9b0a15a 100755 --- a/bin/interpreter.sh +++ b/bin/interpreter.sh @@ -101,6 +101,9 @@ fi . "${bin}/common.sh" +# Escape envs +ZEPPELIN_INTP_CLASSPATH_OVERRIDES=$(printf %q "${ZEPPELIN_INTP_CLASSPATH_OVERRIDES}") + check_java_version ZEPPELIN_INTERPRETER_API_JAR=$(find "${ZEPPELIN_HOME}/interpreter" -name 'zeppelin-interpreter-shaded-*.jar')