Skip to content

Commit

Permalink
Adapt changes in PersistentTaskParams
Browse files Browse the repository at this point in the history
Relates #31045
  • Loading branch information
dnhatn committed Jun 4, 2018
1 parent a86896e commit d125719
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
*/
package org.elasticsearch.xpack.ccr.action;

import org.elasticsearch.Version;
import org.elasticsearch.common.ParseField;
import org.elasticsearch.common.Strings;
import org.elasticsearch.common.io.stream.StreamInput;
Expand Down Expand Up @@ -183,4 +184,8 @@ public String toString() {
return Strings.toString(this);
}

@Override
public Version getMinimalSupportedVersion() {
return Version.V_6_4_0;
}
}

0 comments on commit d125719

Please sign in to comment.