File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
server/src/main/java/org/elasticsearch/action/admin/indices/validate/query Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ public String getExplanation() {
7575
7676 @ Override
7777 public void readFrom (StreamInput in ) throws IOException {
78- if (in .getVersion ().onOrAfter (Version .V_7_0_0_alpha1 )) {
78+ if (in .getVersion ().onOrAfter (Version .V_6_4_0 )) {
7979 index = in .readOptionalString ();
8080 } else {
8181 index = in .readString ();
@@ -92,7 +92,7 @@ public void readFrom(StreamInput in) throws IOException {
9292
9393 @ Override
9494 public void writeTo (StreamOutput out ) throws IOException {
95- if (out .getVersion ().onOrAfter (Version .V_7_0_0_alpha1 )) {
95+ if (out .getVersion ().onOrAfter (Version .V_6_4_0 )) {
9696 out .writeOptionalString (index );
9797 } else {
9898 out .writeString (index );
You can’t perform that action at this time.
0 commit comments