Always Accumulate Transport Exceptions (#1619)

This is the x-pack side of the removal of `accumulateExceptions()` for both `TransportNodesAction` and `TransportTasksAction`.

There are occasional, random failures that occur during API calls that are silently ignored from the caller's perspective, which also leads to weird API responses that have no response and also no errors, which is obviously untrue.
This commit is contained in:
Chris Earle 2017-06-02 10:01:21 -04:00 committed by Martijn van Groningen
parent 614aef2527
commit 1cef531165
No known key found for this signature in database
GPG Key ID: AB236F4FCF2AF12A
1 changed files with 0 additions and 4 deletions

View File

@ -546,10 +546,6 @@ public class TestPersistentTasksPlugin extends Plugin implements ActionPlugin {
listener.onResponse(new TestTaskResponse());
}
@Override
protected boolean accumulateExceptions() {
return false;
}
}