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 068059f commit ddd5738Copy full SHA for ddd5738
modules/reindex/src/main/java/org/elasticsearch/reindex/RestReindexAction.java
@@ -87,7 +87,8 @@ protected ReindexRequest buildRequest(RestRequest request) throws IOException {
87
*/
88
@Override
89
public Set<String> getFilteredFields() {
90
- return Set.of();
+ assert false : "This method should never be called";
91
+ throw new UnsupportedOperationException();
92
}
93
94
0 commit comments