Wait until recover is done before starting the checkpoint tasks.
This commit is contained in:
Timothy Bish 2016-07-14 10:49:23 -04:00
parent 71ee1eae18
commit 8cc5c56d5e

View File

@ -433,8 +433,8 @@ public abstract class MessageDatabase extends ServiceSupport implements BrokerSe
pageFile = null; pageFile = null;
loadPageFile(); loadPageFile();
} }
startCheckpoint();
recover(); recover();
startCheckpoint();
} }
} }