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 bf217d5 commit 5565434Copy full SHA for 5565434
x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plugin/DataNodeRequestSender.java
@@ -149,7 +149,7 @@ void onAfter(List<DriverProfile> profiles) {
149
public void onResponse(DataNodeComputeResponse response) {
150
// remove failures of successful shards
151
for (ShardId shardId : targetShards.shardIds()) {
152
- if (shardFailures.containsKey(shardId) == false) {
+ if (response.shardLevelFailures().containsKey(shardId) == false) {
153
shardFailures.remove(shardId);
154
}
155
0 commit comments