This is an automated email from the ASF dual-hosted git repository.

jongyoul pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/zeppelin.git


The following commit(s) were added to refs/heads/master by this push:
     new dd08a3966e [HOTFIX] Escape envs when using `.conf` (#4715)
dd08a3966e is described below

commit dd08a3966ef3b0b40f13d0291d7cac5ec3dd9f9c
Author: Jongyoul Lee <jongy...@gmail.com>
AuthorDate: Wed Feb 28 00:17:14 2024 +0900

    [HOTFIX] Escape envs when using `.conf` (#4715)
---
 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')

Reply via email to