We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59082c0 commit 1cbccb1Copy full SHA for 1cbccb1
server/src/main/java/org/elasticsearch/search/internal/ShardSearchContextId.java
@@ -50,7 +50,7 @@ public ShardSearchContextId(StreamInput in) throws IOException {
50
} else {
51
this.sessionId = "";
52
}
53
- if (in.getVersion().onOrAfter(Version.V_8_0_0)) {
+ if (in.getVersion().onOrAfter(Version.V_7_12_0)) {
54
this.searcherId = in.readOptionalString();
55
56
this.searcherId = null;
@@ -63,7 +63,7 @@ public void writeTo(StreamOutput out) throws IOException {
63
if (out.getVersion().onOrAfter(Version.V_7_7_0)) {
64
out.writeString(sessionId);
65
66
- if (out.getVersion().onOrAfter(Version.V_8_0_0)) {
+ if (out.getVersion().onOrAfter(Version.V_7_12_0)) {
67
out.writeOptionalString(searcherId);
68
69
0 commit comments