[ZEPPELIN-2149] correct variable name used in interpreter.sh

This commit is contained in:
Prabhjyot Singh 2017-03-21 14:49:30 +05:30
parent fd7aa10e0c
commit 7baf81a152
2 changed files with 2 additions and 2 deletions

View file

@ -23,7 +23,7 @@ function usage() {
echo "usage) $0 -p <port> -d <interpreter dir to load> -l <local interpreter repo dir to load> -g <interpreter group name>"
}
while getopts "hp:d:l:v:u:n:" o; do
while getopts "hp:d:l:v:u:g:" o; do
case ${o} in
h)
usage

View file

@ -112,7 +112,7 @@ public class RemoteInterpreterManagedProcess extends RemoteInterpreterProcess
}
cmdLine.addArgument("-l", false);
cmdLine.addArgument(localRepoDir, false);
cmdLine.addArgument("-n", false);
cmdLine.addArgument("-g", false);
cmdLine.addArgument(interpreterGroupName, false);
executor = new DefaultExecutor();