mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
don't sync on start
This commit is contained in:
parent
575467055f
commit
cd1c3fa0ad
1 changed files with 4 additions and 1 deletions
|
|
@ -92,6 +92,10 @@ public class NotebookRepoSync implements NotebookRepo {
|
|||
LOG.info("No storages could be initialized, using default {} storage", defaultStorage);
|
||||
initializeDefaultStorage(conf);
|
||||
}
|
||||
//syncOnStart();
|
||||
}
|
||||
|
||||
private void syncOnStart() {
|
||||
if (getRepoCount() > 1) {
|
||||
try {
|
||||
AuthenticationInfo subject = new AuthenticationInfo("anonymous");
|
||||
|
|
@ -101,7 +105,6 @@ public class NotebookRepoSync implements NotebookRepo {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
@SuppressWarnings("static-access")
|
||||
private void initializeDefaultStorage(ZeppelinConfiguration conf) {
|
||||
Class<?> notebookStorageClass;
|
||||
|
|
|
|||
Loading…
Reference in a new issue