li4wang commented on code in PR #1966: URL: https://github.com/apache/zookeeper/pull/1966#discussion_r1054752855
########## zookeeper-server/src/main/java/org/apache/zookeeper/server/ZKDatabase.java: ########## @@ -620,6 +623,43 @@ 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 void deserializeSnapshot(final InputArchive ia, final CheckedInputStream is) throws IOException { + clear(); Review Comment: @sonatype-lift ignore This API is called from a thread-safe context, as the zkDatabase is a local variable in ZookeeperServer.restoreFromSnapshot() method. -- 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