Skip to content

Commit 6ee6404

Browse files
committed
Adapt changes in PersistentTaskParams
Relates #31045
1 parent 87abb49 commit 6ee6404

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

x-pack/plugin/ccr/src/main/java/org/elasticsearch/xpack/ccr/action/ShardFollowTask.java

+5
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
*/
66
package org.elasticsearch.xpack.ccr.action;
77

8+
import org.elasticsearch.Version;
89
import org.elasticsearch.common.ParseField;
910
import org.elasticsearch.common.Strings;
1011
import org.elasticsearch.common.io.stream.StreamInput;
@@ -183,4 +184,8 @@ public String toString() {
183184
return Strings.toString(this);
184185
}
185186

187+
@Override
188+
public Version getMinimalSupportedVersion() {
189+
return Version.V_6_4_0;
190+
}
186191
}

0 commit comments

Comments
 (0)