Skip to content

Commit f3d44ba

Browse files
committed
Revert "Do enable if the remote is not ready yet"
This reverts commit 1e3dba2.
1 parent 1e3dba2 commit f3d44ba

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/session/Configuration.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,8 +142,7 @@ public void writeTo(StreamOutput out) throws IOException {
142142
}
143143
if (out.getTransportVersion().onOrAfter(TransportVersions.ESQL_SUPPORT_PARTIAL_RESULTS)
144144
|| out.getTransportVersion().isPatchFrom(TransportVersions.ESQL_SUPPORT_PARTIAL_RESULTS_BACKPORT_8_19)) {
145-
final boolean ready = out.getTransportVersion().onOrAfter(TransportVersions.ESQL_FAILURE_FROM_REMOTE);
146-
out.writeBoolean(allowPartialResults && ready);
145+
out.writeBoolean(allowPartialResults);
147146
}
148147
}
149148

0 commit comments

Comments
 (0)