Skip to content

Commit 3f5b2e8

Browse files
authored
Adjust versions after backport (#54875)
This commit adjusts some versions on master now searchable snapshots has been backported to 7.x in #54825.
1 parent 1714646 commit 3f5b2e8

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public DeleteAction(boolean deleteSearchableSnapshot) {
5050
}
5151

5252
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)) {
5454
this.deleteSearchableSnapshot = in.readBoolean();
5555
} else {
5656
this.deleteSearchableSnapshot = true;
@@ -59,7 +59,7 @@ public DeleteAction(StreamInput in) throws IOException {
5959

6060
@Override
6161
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)) {
6363
out.writeBoolean(deleteSearchableSnapshot);
6464
}
6565
}

x-pack/plugin/searchable-snapshots/qa/rest/src/test/resources/rest-api-spec/test/clear_cache.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ teardown:
6767
---
6868
"Clear searchable snapshots cache":
6969
- 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
7272

7373
- do:
7474
catch: missing

x-pack/plugin/searchable-snapshots/qa/rest/src/test/resources/rest-api-spec/test/stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@ teardown:
6666
---
6767
"Tests searchable snapshots stats":
6868
- 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
7171

7272
- do:
7373
catch: missing

0 commit comments

Comments
 (0)