File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/action Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -65,14 +65,14 @@ public ActionRequestValidationException validate() {
6565 public Request (StreamInput in ) throws IOException {
6666 super (in );
6767 this .names = in .readStringArray ();
68- this .wildcardExpressionsOriginallySpecified = in .getVersion ().onOrAfter (Version .V_8_0_0 ) && in .readBoolean ();
68+ this .wildcardExpressionsOriginallySpecified = in .getVersion ().onOrAfter (Version .V_7_10_0 ) && in .readBoolean ();
6969 }
7070
7171 @ Override
7272 public void writeTo (StreamOutput out ) throws IOException {
7373 super .writeTo (out );
7474 out .writeStringArray (names );
75- if (out .getVersion ().onOrAfter (Version .V_8_0_0 )) {
75+ if (out .getVersion ().onOrAfter (Version .V_7_10_0 )) {
7676 out .writeBoolean (wildcardExpressionsOriginallySpecified );
7777 }
7878 }
You can’t perform that action at this time.
0 commit comments