mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
Fixed some mismatch after rebase
This commit is contained in:
parent
9a03d40d0e
commit
012cf993b8
1 changed files with 2 additions and 1 deletions
|
|
@ -473,7 +473,8 @@ public class NotebookServer extends WebSocketServlet implements
|
|||
List<String> settingIdList = gson.fromJson(String.valueOf(
|
||||
fromMessage.data.get("selectedSettingIds")), new TypeToken<ArrayList<String>>() {
|
||||
}.getType());
|
||||
notebook().bindInterpretersToNote(noteId, settingIdList);
|
||||
AuthenticationInfo subject = new AuthenticationInfo(fromMessage.principal);
|
||||
notebook().bindInterpretersToNote(subject.getUser(), noteId, settingIdList);
|
||||
broadcastInterpreterBindings(noteId,
|
||||
InterpreterBindingUtils.getInterpreterBindings(notebook(), noteId));
|
||||
} catch (Exception e) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue