This is an automated email from the ASF dual-hosted git repository. zjffdu 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 86d37fe [hotfix] Fix test fail 86d37fe is described below commit 86d37fe36867d11eff509c053808a3de41b4863a Author: Jeff Zhang <zjf...@apache.org> AuthorDate: Mon Dec 9 22:37:38 2019 +0800 [hotfix] Fix test fail --- .../java/org/apache/zeppelin/interpreter/remote/RemoteInterpreter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zeppelin-zengine/src/main/java/org/apache/zeppelin/interpreter/remote/RemoteInterpreter.java b/zeppelin-zengine/src/main/java/org/apache/zeppelin/interpreter/remote/RemoteInterpreter.java index 297024a..c9b1256 100644 --- a/zeppelin-zengine/src/main/java/org/apache/zeppelin/interpreter/remote/RemoteInterpreter.java +++ b/zeppelin-zengine/src/main/java/org/apache/zeppelin/interpreter/remote/RemoteInterpreter.java @@ -392,7 +392,7 @@ public class RemoteInterpreter extends Interpreter { // one session own one Scheduler, so that when one session is closed, all the jobs/paragraphs // running under the scheduler of this session will be aborted. Scheduler s = new RemoteScheduler( - RemoteInterpreter.class.getSimpleName() + getInterpreterGroup().getId(), + RemoteInterpreter.class.getSimpleName() + "-" + getInterpreterGroup().getId() + "-" + sessionId, SchedulerFactory.singleton().getExecutor(), this); return SchedulerFactory.singleton().createOrGetScheduler(s);