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 @@ -170,6 +170,8 @@ public class Version implements Comparable<Version>, ToXContentFragment {
170170 public static final Version V_6_3_1 = new Version (V_6_3_1_ID , org .apache .lucene .util .Version .LUCENE_7_3_1 );
171171 public static final int V_6_3_2_ID = 6030299 ;
172172 public static final Version V_6_3_2 = new Version (V_6_3_2_ID , org .apache .lucene .util .Version .LUCENE_7_3_1 );
173+ public static final int V_6_3_3_ID = 6030399 ;
174+ public static final Version V_6_3_3 = new Version (V_6_3_3_ID , org .apache .lucene .util .Version .LUCENE_7_3_1 );
173175 public static final int V_6_4_0_ID = 6040099 ;
174176 public static final Version V_6_4_0 = new Version (V_6_4_0_ID , org .apache .lucene .util .Version .LUCENE_7_4_0 );
175177
@@ -188,6 +190,8 @@ public static Version fromId(int id) {
188190 switch (id ) {
189191 case V_6_4_0_ID :
190192 return V_6_4_0 ;
193+ case V_6_3_3_ID :
194+ return V_6_3_3 ;
191195 case V_6_3_2_ID :
192196 return V_6_3_2 ;
193197 case V_6_3_1_ID :
You can’t perform that action at this time.
0 commit comments