mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-19 19:35:02 +00:00
Throw exception on ping from another cluster
When we receive a ping from another cluster, we should throw an exception so as to not leak the channel.
This commit is contained in:
parent
c90ba67abb
commit
761325bf94
@ -64,6 +64,7 @@ import java.util.Collection;
|
|||||||
import java.util.HashSet;
|
import java.util.HashSet;
|
||||||
import java.util.Iterator;
|
import java.util.Iterator;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
import java.util.Locale;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
import java.util.Objects;
|
import java.util.Objects;
|
||||||
import java.util.Queue;
|
import java.util.Queue;
|
||||||
@ -597,6 +598,13 @@ public class UnicastZenPing extends AbstractComponent implements ZenPing {
|
|||||||
public void messageReceived(UnicastPingRequest request, TransportChannel channel) throws Exception {
|
public void messageReceived(UnicastPingRequest request, TransportChannel channel) throws Exception {
|
||||||
if (request.pingResponse.clusterName().equals(clusterName)) {
|
if (request.pingResponse.clusterName().equals(clusterName)) {
|
||||||
channel.sendResponse(handlePingRequest(request));
|
channel.sendResponse(handlePingRequest(request));
|
||||||
|
} else {
|
||||||
|
throw new IllegalStateException(
|
||||||
|
String.format(
|
||||||
|
Locale.ROOT,
|
||||||
|
"mismatched cluster names; request: [%s], local: [%s]",
|
||||||
|
request.pingResponse.clusterName().value(),
|
||||||
|
clusterName.value()));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user