Repository: zeppelin
Updated Branches:
  refs/heads/master 6d590c40b -> 1a79b51d5


[HotFix] - Incorrect interpreter dir

### What is this PR for?

This is for the bug hotfix introduced in #2592 . The issue is that new 
interpreter created can not run properly because the incorrect interpreter dir. 
Thanks tinkoff-dwh for reporting this issue.

### What type of PR is it?
[ Hot Fix]

### Todos
* [ ] - Task

### How should this be tested?
* First time? Setup Travis CI as described on 
https://zeppelin.apache.org/contribution/contributions.html#continuous-integration
* Strongly recommended: add automated unit tests for any new or changed behavior
* Outline any manual steps to test the PR here.

### Screenshots (if appropriate)

### Questions:
* Does the licenses files need update? No
* Is there breaking changes for older versions? No
* Does this needs documentation? No

Author: Jeff Zhang <zjf...@apache.org>

Closes #2632 from zjffdu/HotFix_Interpreter and squashes the following commits:

2d7ab03 [Jeff Zhang] [HotFix] - Incorrect interpreter dir


Project: http://git-wip-us.apache.org/repos/asf/zeppelin/repo
Commit: http://git-wip-us.apache.org/repos/asf/zeppelin/commit/1a79b51d
Tree: http://git-wip-us.apache.org/repos/asf/zeppelin/tree/1a79b51d
Diff: http://git-wip-us.apache.org/repos/asf/zeppelin/diff/1a79b51d

Branch: refs/heads/master
Commit: 1a79b51d55d12bcf2674ebdf52f56eb25e92ac67
Parents: 6d590c4
Author: Jeff Zhang <zjf...@apache.org>
Authored: Wed Oct 25 21:53:37 2017 +0800
Committer: Jeff Zhang <zjf...@apache.org>
Committed: Thu Oct 26 08:24:14 2017 +0800

----------------------------------------------------------------------
 .../java/org/apache/zeppelin/interpreter/InterpreterSetting.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/1a79b51d/zeppelin-zengine/src/main/java/org/apache/zeppelin/interpreter/InterpreterSetting.java
----------------------------------------------------------------------
diff --git 
a/zeppelin-zengine/src/main/java/org/apache/zeppelin/interpreter/InterpreterSetting.java
 
b/zeppelin-zengine/src/main/java/org/apache/zeppelin/interpreter/InterpreterSetting.java
index 3b42752..93481be 100644
--- 
a/zeppelin-zengine/src/main/java/org/apache/zeppelin/interpreter/InterpreterSetting.java
+++ 
b/zeppelin-zengine/src/main/java/org/apache/zeppelin/interpreter/InterpreterSetting.java
@@ -645,7 +645,7 @@ public class InterpreterSetting {
       createLauncher();
     }
     InterpreterLaunchContext launchContext = new
-        InterpreterLaunchContext(getJavaProperties(), option, 
interpreterRunner, id, name);
+        InterpreterLaunchContext(getJavaProperties(), option, 
interpreterRunner, id, group);
     RemoteInterpreterProcess process = (RemoteInterpreterProcess) 
launcher.launch(launchContext);
     process.setRemoteInterpreterEventPoller(
         new RemoteInterpreterEventPoller(remoteInterpreterProcessListener, 
appEventListener));

Reply via email to