Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,9 @@ public void check() {
if (!isV2Open()) {
List<String> cpList = getCheckpointList();
if (cpList != null && cpList.size() != 0) {
logger.error("checkpoint check failed, can't convert checkpoint from v2 to v1");
logger.error("checkpoint check failed, the checkpoint version of database not match your " +
"config file, please set storage.checkpoint.version = 2 in your config file " +
"and restart the node.");
System.exit(-1);
}
checkV1();
Expand Down