You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@zeppelin.apache.org by GitBox <gi...@apache.org> on 2022/01/31 06:54:29 UTC

[GitHub] [zeppelin] saLeox commented on a change in pull request #4294: [ZEPPELIN-5644] Reduce redundancy during the interpreter execution process

saLeox commented on a change in pull request #4294:
URL: https://github.com/apache/zeppelin/pull/4294#discussion_r795385005



##########
File path: zeppelin-interpreter/src/main/java/org/apache/zeppelin/interpreter/remote/RemoteInterpreterServer.java
##########
@@ -482,9 +490,14 @@ public void close(String sessionId, String className) throws InterpreterRPCExcep
           Iterator<Interpreter> it = interpreters.iterator();
           while (it.hasNext()) {
             Interpreter inp = it.next();
-            if (inp.getClassName().equals(className)) {
+            LazyOpenInterpreter lazy = (LazyOpenInterpreter) inp;

Review comment:
       Thanks for your suggestion, Reamer, I will add the condition.




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscribe@zeppelin.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org