File tree 3 files changed +6
-6
lines changed
core/src/main/java/org/elasticsearch/xpack/core/ilm
searchable-snapshots/qa/rest/src/test/resources/rest-api-spec/test 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ public DeleteAction(boolean deleteSearchableSnapshot) {
50
50
}
51
51
52
52
public DeleteAction (StreamInput in ) throws IOException {
53
- if (in .getVersion ().onOrAfter (Version .V_8_0_0 )) {
53
+ if (in .getVersion ().onOrAfter (Version .V_7_8_0 )) {
54
54
this .deleteSearchableSnapshot = in .readBoolean ();
55
55
} else {
56
56
this .deleteSearchableSnapshot = true ;
@@ -59,7 +59,7 @@ public DeleteAction(StreamInput in) throws IOException {
59
59
60
60
@ Override
61
61
public void writeTo (StreamOutput out ) throws IOException {
62
- if (out .getVersion ().onOrAfter (Version .V_8_0_0 )) {
62
+ if (out .getVersion ().onOrAfter (Version .V_7_8_0 )) {
63
63
out .writeBoolean (deleteSearchableSnapshot );
64
64
}
65
65
}
Original file line number Diff line number Diff line change @@ -67,8 +67,8 @@ teardown:
67
67
---
68
68
" Clear searchable snapshots cache " :
69
69
- skip :
70
- version : " - 7.99 .99"
71
- reason : searchable snapshots introduced in 8.0
70
+ version : " - 7.7 .99"
71
+ reason : searchable snapshots introduced in 7. 8.0
72
72
73
73
- do :
74
74
catch : missing
Original file line number Diff line number Diff line change @@ -66,8 +66,8 @@ teardown:
66
66
---
67
67
" Tests searchable snapshots stats " :
68
68
- skip :
69
- version : " - 7.99 .99"
70
- reason : searchable snapshots introduced in 8.0
69
+ version : " - 7.7 .99"
70
+ reason : searchable snapshots introduced in 7. 8.0
71
71
72
72
- do :
73
73
catch : missing
You can’t perform that action at this time.
0 commit comments