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 @@ -515,7 +515,7 @@ public static void loadJournal(Catalog catalog, JournalEntity journal) {
case OperationType.OP_META_VERSION: {
String versionString = ((Text) journal.getData()).toString();
int version = Integer.parseInt(versionString);
if (MetaContext.get().getMetaVersion() > FeConstants.meta_version) {
if (version > FeConstants.meta_version) {
LOG.error("meta data version is out of date, image: {}. meta: {}."
+ "please update FeConstants.meta_version and restart.",
MetaContext.get().getMetaVersion(), FeConstants.meta_version);
Expand Down