mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
fix pullNoteID to pullNoteId
This commit is contained in:
parent
f843abd4b4
commit
2c5d461f7e
1 changed files with 2 additions and 2 deletions
|
|
@ -193,7 +193,7 @@ public class NotebookRepoSync implements NotebookRepo {
|
|||
for (String id : pushNoteIds) {
|
||||
LOG.info("ID : " + id);
|
||||
}
|
||||
pushNotes(subject, pushNoteIDs, srcRepo, dstRepo, false);
|
||||
pushNotes(subject, pushNoteIds, srcRepo, dstRepo, false);
|
||||
} else {
|
||||
LOG.info("Nothing to push");
|
||||
}
|
||||
|
|
@ -203,7 +203,7 @@ public class NotebookRepoSync implements NotebookRepo {
|
|||
for (String id : pullNoteIds) {
|
||||
LOG.info("ID : " + id);
|
||||
}
|
||||
pushNotes(subject, pullNoteIDs, dstRepo, srcRepo, true);
|
||||
pushNotes(subject, pullNoteIds, dstRepo, srcRepo, true);
|
||||
} else {
|
||||
LOG.info("Nothing to pull");
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue