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.
equals()
String
hasRemoteClusters()
1 parent 0a399b5 commit 6a73f89Copy full SHA for 6a73f89
server/src/main/java/org/elasticsearch/action/search/SearchResponse.java
@@ -787,7 +787,8 @@ public boolean hasClusterObjects() {
787
* This will be false for local-cluster (non-CCS) only searches.
788
*/
789
public boolean hasRemoteClusters() {
790
- return total > 1 || clusterInfo.keySet().stream().anyMatch(alias -> alias != RemoteClusterAware.LOCAL_CLUSTER_GROUP_KEY);
+ return total > 1
791
+ || clusterInfo.keySet().stream().anyMatch(alias -> alias.equals(RemoteClusterAware.LOCAL_CLUSTER_GROUP_KEY) == false);
792
}
793
794
0 commit comments