Skip to content

Commit

Permalink
Fix ITtest Fail
Browse files Browse the repository at this point in the history
Signed-off-by: Junwei Dai <[email protected]>
  • Loading branch information
Junwei Dai committed Dec 17, 2024
1 parent e4e30f5 commit 615a4b6
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -304,6 +304,8 @@ public SearchSourceBuilder(StreamInput in) throws IOException {
}
if (in.getVersion().onOrAfter(Version.V_2_18_0)) {
searchPipeline = in.readOptionalString();
}
if (in.getVersion().onOrAfter(Version.CURRENT)) {
verbosePipeline = in.readBoolean();
}
}
Expand Down Expand Up @@ -388,6 +390,8 @@ public void writeTo(StreamOutput out) throws IOException {
}
if (out.getVersion().onOrAfter(Version.V_2_18_0)) {
out.writeOptionalString(searchPipeline);
}
if (out.getVersion().onOrAfter(Version.CURRENT)) {
out.writeOptionalBoolean(verbosePipeline);
}
}
Expand Down

0 comments on commit 615a4b6

Please sign in to comment.