mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
fix build error.
This commit is contained in:
parent
a305eca1d0
commit
fee70862fc
2 changed files with 3 additions and 3 deletions
|
|
@ -83,7 +83,7 @@ public class LivyIntegrationTest {
|
|||
AuthenticationInfo authInfo = new AuthenticationInfo("user1");
|
||||
MyInterpreterOutputListener outputListener = new MyInterpreterOutputListener();
|
||||
InterpreterOutput output = new InterpreterOutput(outputListener);
|
||||
InterpreterContext context = new InterpreterContext("noteId", "paragraphId", "title",
|
||||
InterpreterContext context = new InterpreterContext("noteId", "paragraphId", null, "title",
|
||||
"text", authInfo, null, null, null, null, null, output);
|
||||
sparkInterpreter.open();
|
||||
InterpreterResult result = sparkInterpreter.interpret("sc.version", context);
|
||||
|
|
@ -177,7 +177,7 @@ public class LivyIntegrationTest {
|
|||
AuthenticationInfo authInfo = new AuthenticationInfo("user1");
|
||||
MyInterpreterOutputListener outputListener = new MyInterpreterOutputListener();
|
||||
InterpreterOutput output = new InterpreterOutput(outputListener);
|
||||
InterpreterContext context = new InterpreterContext("noteId", "paragraphId", "title",
|
||||
InterpreterContext context = new InterpreterContext("noteId", "paragraphId", null, "title",
|
||||
"text", authInfo, null, null, null, null, null, output);
|
||||
pysparkInterpreter.open();
|
||||
InterpreterResult result = pysparkInterpreter.interpret("sc.version", context);
|
||||
|
|
|
|||
|
|
@ -97,7 +97,7 @@
|
|||
}
|
||||
angular.element('#entityname').autocomplete({
|
||||
source: $scope.availableInterpreters,
|
||||
select: function (event, selected){
|
||||
select: function(event, selected) {
|
||||
$scope.entity = selected.item.value;
|
||||
return false;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue