[ZEPPELIN-3029] Change authentication to anonymous instead of empty

This commit is contained in:
Mohamed Magdy 2017-12-19 12:30:08 +01:00
parent b5fbc1ed62
commit af952a0728

View file

@ -302,7 +302,7 @@ public class Notebook implements NoteEventListener {
// in fetching the latest versions of the notebook if a remote repository is used.
// For example, if GitHub is integrated, whenever the notebook is requested, it is pulled from
// the remote repository.
loadNoteFromRepo(noteId, new AuthenticationInfo(StringUtils.EMPTY));
loadNoteFromRepo(noteId, AuthenticationInfo.ANONYMOUS);
return notes.get(noteId);
}
}