File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
server/src/main/java/org/elasticsearch/action/admin/indices/alias Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -258,7 +258,7 @@ public AliasActions(StreamInput in) throws IOException {
258258 isHidden = in .readOptionalBoolean ();
259259 }
260260 originalAliases = in .readStringArray ();
261- if (in .getVersion ().onOrAfter (Version .V_8_0_0 )) {
261+ if (in .getVersion ().onOrAfter (Version .V_7_9_0 )) {
262262 mustExist = in .readOptionalBoolean ();
263263 } else {
264264 mustExist = null ;
@@ -279,7 +279,7 @@ public void writeTo(StreamOutput out) throws IOException {
279279 out .writeOptionalBoolean (isHidden );
280280 }
281281 out .writeStringArray (originalAliases );
282- if (out .getVersion ().onOrAfter (Version .V_8_0_0 )) {
282+ if (out .getVersion ().onOrAfter (Version .V_7_9_0 )) {
283283 out .writeOptionalBoolean (mustExist );
284284 }
285285 }
You can’t perform that action at this time.
0 commit comments