mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
Fix compile error
This commit is contained in:
parent
bfcdf347dd
commit
0671dfdb5c
3 changed files with 6 additions and 6 deletions
|
|
@ -930,11 +930,10 @@ public class InterpreterFactory implements InterpreterGroupFactory {
|
|||
RemoteInterpreter remoteInterpreter = new RemoteInterpreter(
|
||||
property, noteId, className, conf.getInterpreterRemoteRunnerPath(),
|
||||
interpreterPath, localRepoPath, connectTimeout,
|
||||
maxPoolSize, remoteInterpreterProcessListener, appEventListener)
|
||||
|
||||
maxPoolSize, remoteInterpreterProcessListener, appEventListener);
|
||||
remoteInterpreter.setEnv(env);
|
||||
LazyOpenInterpreter intp = new LazyOpenInterpreter(remoteInterpreter);
|
||||
return intp;
|
||||
|
||||
return new LazyOpenInterpreter(remoteInterpreter);
|
||||
}
|
||||
|
||||
private Properties updatePropertiesFromRegisteredInterpreter(Properties properties,
|
||||
|
|
|
|||
|
|
@ -93,7 +93,8 @@ public class HeliumApplicationFactoryTest implements JobListenerFactory {
|
|||
factory,
|
||||
this,
|
||||
search,
|
||||
notebookAuthorization);
|
||||
notebookAuthorization,
|
||||
null);
|
||||
|
||||
heliumAppFactory.setNotebook(notebook);
|
||||
|
||||
|
|
|
|||
|
|
@ -286,7 +286,7 @@ public class LuceneSearchTest {
|
|||
}
|
||||
|
||||
private Note newNote(String name) {
|
||||
Note note = new Note(notebookRepoMock, replLoaderMock, null, notebookIndex, null);
|
||||
Note note = new Note(notebookRepoMock, replLoaderMock, null, notebookIndex, null, null);
|
||||
note.setName(name);
|
||||
return note;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue