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 @@ -92,6 +92,8 @@ public class Version implements Comparable<Version>, ToXContentFragment {
9292 public static final Version V_7_1_1 = new Version (V_7_1_1_ID , org .apache .lucene .util .Version .LUCENE_8_0_0 );
9393 public static final int V_7_2_0_ID = 7020099 ;
9494 public static final Version V_7_2_0 = new Version (V_7_2_0_ID , org .apache .lucene .util .Version .LUCENE_8_0_0 );
95+ public static final int V_7_3_0_ID = 7030099 ;
96+ public static final Version V_7_3_0 = new Version (V_7_3_0_ID , org .apache .lucene .util .Version .LUCENE_8_0_0 );
9597 public static final int V_8_0_0_ID = 8000099 ;
9698 public static final Version V_8_0_0 = new Version (V_8_0_0_ID , org .apache .lucene .util .Version .LUCENE_8_1_0 );
9799 public static final Version CURRENT = V_8_0_0 ;
@@ -110,6 +112,8 @@ public static Version fromId(int id) {
110112 switch (id ) {
111113 case V_8_0_0_ID :
112114 return V_8_0_0 ;
115+ case V_7_3_0_ID :
116+ return V_7_3_0 ;
113117 case V_7_2_0_ID :
114118 return V_7_2_0 ;
115119 case V_7_1_1_ID :
You can’t perform that action at this time.
0 commit comments