ccoffline commented on a change in pull request #6416: URL: https://github.com/apache/incubator-doris/pull/6416#discussion_r699061635
########## File path: fe/fe-core/src/main/java/org/apache/doris/backup/RestoreJob.java ########## @@ -1048,11 +1049,17 @@ private boolean downloadAndDeserializeMetaInfo() { } private void replayCheckAndPrepareMeta() { - Database db = catalog.getDb(dbId); + Database db; + try { + db = catalog.getDbOrMetaException(dbId); Review comment: It is called by `replayRun`, which is called by the code below, and have some next process. https://github.com/apache/incubator-doris/blob/138e7e896dee6842d8af7583d59288190371cd86/fe/fe-core/src/main/java/org/apache/doris/backup/BackupHandler.java#L643-L655 -- 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: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org