We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0494bfa commit 7923833Copy full SHA for 7923833
server/src/main/java/org/elasticsearch/search/internal/ShardSearchRequest.java
@@ -154,7 +154,7 @@ public ShardSearchRequest(StreamInput in) throws IOException {
154
numberOfShards = in.readVInt();
155
scroll = in.readOptionalWriteable(Scroll::new);
156
source = in.readOptionalWriteable(SearchSourceBuilder::new);
157
- if (in.getVersion().before(Version.V_7_7_0)) {
+ if (in.getVersion().before(Version.V_8_0_0)) {
158
// types no longer relevant so ignore
159
String[] types = in.readStringArray();
160
if (types.length > 0) {
0 commit comments