File tree 1 file changed +2
-2
lines changed
server/src/main/java/org/elasticsearch/action/support
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -239,7 +239,7 @@ public boolean ignoreAliases() {
239
239
}
240
240
241
241
public void writeIndicesOptions (StreamOutput out ) throws IOException {
242
- if (out .getVersion ().onOrAfter (Version .V_7_0_0_alpha1 )) {
242
+ if (out .getVersion ().onOrAfter (Version .V_6_4_0 )) {
243
243
out .writeEnumSet (options );
244
244
out .writeEnumSet (expandWildcards );
245
245
} else {
@@ -248,7 +248,7 @@ public void writeIndicesOptions(StreamOutput out) throws IOException {
248
248
}
249
249
250
250
public static IndicesOptions readIndicesOptions (StreamInput in ) throws IOException {
251
- if (in .getVersion ().onOrAfter (Version .V_7_0_0_alpha1 )) {
251
+ if (in .getVersion ().onOrAfter (Version .V_6_4_0 )) {
252
252
return new IndicesOptions (in .readEnumSet (Option .class ), in .readEnumSet (WildcardStates .class ));
253
253
} else {
254
254
byte id = in .readByte ();
You can’t perform that action at this time.
0 commit comments