Skip to content

Commit 22d53fe

Browse files
committed
fix supports
1 parent 2679697 commit 22d53fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/ilm/IndexLifecycleExplainResponse.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ public IndexLifecycleExplainResponse(StreamInput in) throws IOException {
357357
} else {
358358
previousStepInfo = null;
359359
}
360-
if (in.getTransportVersion().onOrAfter(ILM_ADD_SKIP_SETTING)) {
360+
if (in.getTransportVersion().supports(ILM_ADD_SKIP_SETTING)) {
361361
skip = in.readBoolean();
362362
} else {
363363
skip = false;

0 commit comments

Comments
 (0)