mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
fix sio support
This commit is contained in:
parent
afb9db7465
commit
5a7886fd82
1 changed files with 5 additions and 1 deletions
|
|
@ -26,7 +26,7 @@ import com.google.cloud.dataflow.sdk.runners.inprocess.InProcessPipelineRunner
|
|||
import com.spotify.scio.repl.{ScioILoop, ScioReplClassLoader}
|
||||
import org.apache.zeppelin.interpreter.Interpreter.FormType
|
||||
import org.apache.zeppelin.interpreter.util.InterpreterOutputStream
|
||||
import org.apache.zeppelin.interpreter.{Interpreter, InterpreterContext, InterpreterResult}
|
||||
import org.apache.zeppelin.interpreter.{Interpreter, InterpreterContext, InterpreterResult, RemoteWorksController}
|
||||
import org.slf4j.LoggerFactory
|
||||
|
||||
import scala.reflect.io.File
|
||||
|
|
@ -153,6 +153,10 @@ class ScioInterpreter(property: Properties) extends Interpreter(property) {
|
|||
REPL.closeInterpreter()
|
||||
}
|
||||
|
||||
override def getRemoteZeppelinServerController: RemoteWorksController = null
|
||||
|
||||
override def setRemoteZeppelinServerController(zServer: RemoteWorksController): Unit = {}
|
||||
|
||||
override def interpret(code: String, context: InterpreterContext): InterpreterResult = {
|
||||
val paragraphId = context.getParagraphId
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue