Skip to content

Commit 40d0b72

Browse files
committed
Fix wrong IndexVersion order of 10_0_1 update
1 parent 67994f6 commit 40d0b72

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

server/src/main/java/org/elasticsearch/index/IndexVersions.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,8 +131,8 @@ private static Version parseUnchecked(String version) {
131131
public static final IndexVersion ADD_ROLE_MAPPING_CLEANUP_MIGRATION = def(8_518_00_0, Version.LUCENE_9_12_0);
132132
public static final IndexVersion LOGSDB_DEFAULT_IGNORE_DYNAMIC_BEYOND_LIMIT_BACKPORT = def(8_519_00_0, Version.LUCENE_9_12_0);
133133
public static final IndexVersion UPGRADE_TO_LUCENE_10_0_0 = def(9_000_00_0, Version.LUCENE_10_0_0);
134-
public static final IndexVersion UPGRADE_TO_LUCENE_10_0_1 = def(9_001_00_0, Version.LUCENE_10_0_1);
135-
public static final IndexVersion LOGSDB_DEFAULT_IGNORE_DYNAMIC_BEYOND_LIMIT = def(9_002_00_0, Version.LUCENE_10_0_0);
134+
public static final IndexVersion LOGSDB_DEFAULT_IGNORE_DYNAMIC_BEYOND_LIMIT = def(9_001_00_0, Version.LUCENE_10_0_0);
135+
public static final IndexVersion UPGRADE_TO_LUCENE_10_0_1 = def(9_002_00_0, Version.LUCENE_10_0_1);
136136

137137
/*
138138
* STOP! READ THIS FIRST! No, really,

0 commit comments

Comments
 (0)