File tree 1 file changed +4
-0
lines changed
server/src/main/java/org/elasticsearch
1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -155,6 +155,8 @@ public class Version implements Comparable<Version> {
155
155
public static final Version V_6_2_2 = new Version (V_6_2_2_ID , org .apache .lucene .util .Version .LUCENE_7_2_1 );
156
156
public static final int V_6_2_3_ID = 6020399 ;
157
157
public static final Version V_6_2_3 = new Version (V_6_2_3_ID , org .apache .lucene .util .Version .LUCENE_7_2_1 );
158
+ public static final int V_6_2_4_ID = 6020499 ;
159
+ public static final Version V_6_2_4 = new Version (V_6_2_4_ID , org .apache .lucene .util .Version .LUCENE_7_2_1 );
158
160
public static final int V_6_3_0_ID = 6030099 ;
159
161
public static final Version V_6_3_0 = new Version (V_6_3_0_ID , org .apache .lucene .util .Version .LUCENE_7_2_1 );
160
162
public static final Version CURRENT = V_6_3_0 ;
@@ -172,6 +174,8 @@ public static Version fromId(int id) {
172
174
switch (id ) {
173
175
case V_6_3_0_ID :
174
176
return V_6_3_0 ;
177
+ case V_6_2_4_ID :
178
+ return V_6_2_4 ;
175
179
case V_6_2_3_ID :
176
180
return V_6_2_3 ;
177
181
case V_6_2_2_ID :
You can’t perform that action at this time.
0 commit comments