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 @@ -186,6 +186,8 @@ public class Version implements Comparable<Version>, ToXContentFragment {
186186 public static final Version V_6_4_2 = new Version (V_6_4_2_ID , org .apache .lucene .util .Version .LUCENE_7_4_0 );
187187 public static final int V_6_4_3_ID = 6040399 ;
188188 public static final Version V_6_4_3 = new Version (V_6_4_3_ID , org .apache .lucene .util .Version .LUCENE_7_4_0 );
189+ public static final int V_6_4_4_ID = 6040499 ;
190+ public static final Version V_6_4_4 = new Version (V_6_4_4_ID , org .apache .lucene .util .Version .LUCENE_7_4_0 );
189191 public static final int V_6_5_0_ID = 6050099 ;
190192 public static final Version V_6_5_0 = new Version (V_6_5_0_ID , org .apache .lucene .util .Version .LUCENE_7_5_0 );
191193 public static final int V_6_6_0_ID = 6060099 ;
@@ -208,6 +210,8 @@ public static Version fromId(int id) {
208210 return V_6_6_0 ;
209211 case V_6_5_0_ID :
210212 return V_6_5_0 ;
213+ case V_6_4_4_ID :
214+ return V_6_4_4 ;
211215 case V_6_4_3_ID :
212216 return V_6_4_3 ;
213217 case V_6_4_2_ID :
You can’t perform that action at this time.
0 commit comments