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 @@ -105,6 +105,8 @@ public class Version implements Comparable<Version>, ToXContentFragment {
105105 public static final Version V_6_4_2 = new Version (V_6_4_2_ID , org .apache .lucene .util .Version .LUCENE_7_4_0 );
106106 public static final int V_6_4_3_ID = 6040399 ;
107107 public static final Version V_6_4_3 = new Version (V_6_4_3_ID , org .apache .lucene .util .Version .LUCENE_7_4_0 );
108+ public static final int V_6_4_4_ID = 6040499 ;
109+ public static final Version V_6_4_4 = new Version (V_6_4_4_ID , org .apache .lucene .util .Version .LUCENE_7_4_0 );
108110 public static final int V_6_5_0_ID = 6050099 ;
109111 public static final Version V_6_5_0 = new Version (V_6_5_0_ID , org .apache .lucene .util .Version .LUCENE_7_5_0 );
110112 public static final int V_6_6_0_ID = 6060099 ;
@@ -131,6 +133,8 @@ public static Version fromId(int id) {
131133 return V_6_6_0 ;
132134 case V_6_5_0_ID :
133135 return V_6_5_0 ;
136+ case V_6_4_4_ID :
137+ return V_6_4_4 ;
134138 case V_6_4_3_ID :
135139 return V_6_4_3 ;
136140 case V_6_4_2_ID :
You can’t perform that action at this time.
0 commit comments