li4wang commented on code in PR #1961: URL: https://github.com/apache/zookeeper/pull/1961#discussion_r1048113099
########## zookeeper-server/src/main/java/org/apache/zookeeper/server/ZKDatabase.java: ########## @@ -620,6 +623,48 @@ public void deserializeSnapshot(InputArchive ia) throws IOException { initialized = true; } + /** + * Deserialize a snapshot that contains FileHeader from an input archive. It is used by + * the admin restore command. + * + * @param ia the input archive to deserialize from + * @param is the CheckInputStream to check integrity + * + * @throws IOException + */ + public synchronized void deserializeSnapshot(final InputArchive ia, final CheckedInputStream is) throws IOException { + // clear the zkDatabase + clear(); Review Comment: @sonatype-lift ignore -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@zookeeper.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org