Skip to content

Commit

Permalink
[ZEPPELIN-6017] Revert changes about ZEPPELIN_IDENT_STRING in ZEPPELI…
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinjmh committed Apr 27, 2024
1 parent ca2481d commit d16ef69
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions bin/common.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,10 @@ if not defined JAVA_HOME (
set ZEPPELIN_RUNNER=%JAVA_HOME%\bin\java
)

if not defined ZEPPELIN_IDENT_STRING (
set ZEPPELIN_IDENT_STRING=%USERNAME%
)

if not defined ZEPPELIN_INTERPRETER_REMOTE_RUNNER (
set ZEPPELIN_INTERPRETER_REMOTE_RUNNER=bin\interpreter.cmd
)
Expand Down
4 changes: 4 additions & 0 deletions bin/common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,10 @@ else
fi
export ZEPPELIN_RUNNER

if [[ -z "$ZEPPELIN_IDENT_STRING" ]]; then
export ZEPPELIN_IDENT_STRING="${USER}"
fi

if [[ -z "$ZEPPELIN_INTERPRETER_REMOTE_RUNNER" ]]; then
export ZEPPELIN_INTERPRETER_REMOTE_RUNNER="bin/interpreter.sh"
fi

0 comments on commit d16ef69

Please sign in to comment.