File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
server/src/main/java/org/elasticsearch Expand file tree Collapse file tree 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> {
155155 public static final Version V_6_2_2 = new Version (V_6_2_2_ID , org .apache .lucene .util .Version .LUCENE_7_2_1 );
156156 public static final int V_6_2_3_ID = 6020399 ;
157157 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 );
158160 public static final int V_6_3_0_ID = 6030099 ;
159161 public static final Version V_6_3_0 = new Version (V_6_3_0_ID , org .apache .lucene .util .Version .LUCENE_7_2_1 );
160162 public static final Version CURRENT = V_6_3_0 ;
@@ -172,6 +174,8 @@ public static Version fromId(int id) {
172174 switch (id ) {
173175 case V_6_3_0_ID :
174176 return V_6_3_0 ;
177+ case V_6_2_4_ID :
178+ return V_6_2_4 ;
175179 case V_6_2_3_ID :
176180 return V_6_2_3 ;
177181 case V_6_2_2_ID :
You can’t perform that action at this time.
0 commit comments