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 cad65b0 commit 56737d7Copy full SHA for 56737d7
server/src/main/java/org/elasticsearch/transport/RemoteConnectionStrategy.java
@@ -192,7 +192,7 @@ static Set<String> getRemoteClusters(Settings settings) {
192
public static boolean isConnectionEnabled(LinkedClusterConnectionConfig config) {
193
ConnectionStrategy mode = config.getConnectionMode();
194
if (mode.equals(ConnectionStrategy.SNIFF)) {
195
- List<String> seeds = SniffConnectionStrategy.REMOTE_CLUSTER_SEEDS.getConcreteSettingForNamespace(clusterAlias).get(settings);
+ List<String> seeds = config.getSeeds();
196
return seeds.isEmpty() == false;
197
} else {
198
String address = config.getProxyAddress();
0 commit comments