mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
Fix excess symbol bug
This commit is contained in:
parent
ca1b0b3973
commit
57f6d29055
1 changed files with 2 additions and 2 deletions
|
|
@ -277,7 +277,7 @@ public class NotebookRestApi {
|
|||
}
|
||||
|
||||
/**
|
||||
* e
|
||||
*
|
||||
* Bind a setting to note.
|
||||
*
|
||||
* @throws IOException
|
||||
|
|
@ -290,7 +290,7 @@ public class NotebookRestApi {
|
|||
"Insufficient privileges you cannot bind any interpreters to this note");
|
||||
|
||||
List<String> settingIdList = gson.fromJson(req, new TypeToken<List<String>>() {}.getType());
|
||||
notebook.bindInterpretersToNote(SecurityUtils.getPrincipal(), noEteId, settingIdList);
|
||||
notebook.bindInterpretersToNote(SecurityUtils.getPrincipal(), noteId, settingIdList);
|
||||
return new JsonResponse<>(Status.OK).build();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue