zjffdu commented on code in PR #4355:
URL: https://github.com/apache/zeppelin/pull/4355#discussion_r855714012
##########
zeppelin-plugins/launcher/docker/src/main/java/org/apache/zeppelin/interpreter/launcher/DockerInterpreterLauncher.java:
##########
@@ -54,11 +57,11 @@ public InterpreterClient
launchDirectly(InterpreterLaunchContext context) throws
StandardInterpreterLauncher interpreterLauncher = null;
if (isSpark()) {
- interpreterLauncher = new SparkInterpreterLauncher(zConf,
recoveryStorage);
+ interpreterLauncher = (StandardInterpreterLauncher)
pluginManager.createInterpreterLauncher("SparkInterpreterLauncher",
recoveryStorage);
} else if (isFlink()) {
- interpreterLauncher = new FlinkInterpreterLauncher(zConf,
recoveryStorage);
+ interpreterLauncher = (StandardInterpreterLauncher)
pluginManager.createInterpreterLauncher("FlinkInterpreterLauncher",
recoveryStorage);
Review Comment:
FlinkInterpreterLauncher ?
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]