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 @@ -168,6 +168,8 @@ public class Version implements Comparable<Version>, ToXContentFragment {
168168 public static final Version V_6_3_0 = new Version (V_6_3_0_ID , org .apache .lucene .util .Version .LUCENE_7_3_1 );
169169 public static final int V_6_3_1_ID = 6030199 ;
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 );
171+ public static final int V_6_3_2_ID = 6030299 ;
172+ public static final Version V_6_3_2 = new Version (V_6_3_2_ID , org .apache .lucene .util .Version .LUCENE_7_3_1 );
171173 public static final int V_6_4_0_ID = 6040099 ;
172174 public static final Version V_6_4_0 = new Version (V_6_4_0_ID , org .apache .lucene .util .Version .LUCENE_7_4_0 );
173175
@@ -186,6 +188,8 @@ public static Version fromId(int id) {
186188 switch (id ) {
187189 case V_6_4_0_ID :
188190 return V_6_4_0 ;
191+ case V_6_3_2_ID :
192+ return V_6_3_2 ;
189193 case V_6_3_1_ID :
190194 return V_6_3_1 ;
191195 case V_6_3_0_ID :
You can’t perform that action at this time.
0 commit comments