Skip to content

Commit

Permalink
Fix 6.8.10 version constant
Browse files Browse the repository at this point in the history
  • Loading branch information
mark-vieira authored May 13, 2020
1 parent 2dff0ff commit b237f57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/src/main/java/org/elasticsearch/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ public class Version implements Comparable<Version>, ToXContentFragment {
public static final Version V_6_8_7 = new Version(6080799, org.apache.lucene.util.Version.LUCENE_7_7_2);
public static final Version V_6_8_8 = new Version(6080899, org.apache.lucene.util.Version.LUCENE_7_7_2);
public static final Version V_6_8_9 = new Version(6080999, org.apache.lucene.util.Version.LUCENE_7_7_3);
public static final Version V_6_8_10 = new Version(6080999, org.apache.lucene.util.Version.LUCENE_7_7_3);
public static final Version V_6_8_10 = new Version(6081099, org.apache.lucene.util.Version.LUCENE_7_7_3);

public static final Version CURRENT = V_6_8_10;

Expand Down

0 comments on commit b237f57

Please sign in to comment.