Fix checkstyle and a test
This commit is contained in:
parent
17930930a7
commit
d97750b52c
|
@ -174,6 +174,8 @@ public class AwsEc2UnicastHostsProvider extends AbstractComponent implements Uni
|
||||||
logger.debug("using [{}] as the instance address", address);
|
logger.debug("using [{}] as the instance address", address);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
throw new IllegalArgumentException(hostType + " is unknown for discovery.ec2.host_type");
|
||||||
}
|
}
|
||||||
if (address != null) {
|
if (address != null) {
|
||||||
try {
|
try {
|
||||||
|
@ -181,8 +183,8 @@ public class AwsEc2UnicastHostsProvider extends AbstractComponent implements Uni
|
||||||
TransportAddress[] addresses = transportService.addressesFromString(address, 1);
|
TransportAddress[] addresses = transportService.addressesFromString(address, 1);
|
||||||
for (int i = 0; i < addresses.length; i++) {
|
for (int i = 0; i < addresses.length; i++) {
|
||||||
logger.trace("adding {}, address {}, transport_address {}", instance.getInstanceId(), address, addresses[i]);
|
logger.trace("adding {}, address {}, transport_address {}", instance.getInstanceId(), address, addresses[i]);
|
||||||
discoNodes.add(new DiscoveryNode(instance.getInstanceId(), "#cloud-" + instance.getInstanceId() + "-" + i, addresses[i],
|
discoNodes.add(new DiscoveryNode(instance.getInstanceId(), "#cloud-" + instance.getInstanceId() + "-" + i,
|
||||||
emptyMap(), emptySet(), Version.CURRENT.minimumCompatibilityVersion()));
|
addresses[i], emptyMap(), emptySet(), Version.CURRENT.minimumCompatibilityVersion()));
|
||||||
}
|
}
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
final String finalAddress = address;
|
final String finalAddress = address;
|
||||||
|
|
|
@ -201,7 +201,7 @@ public class Ec2DiscoveryTests extends ESTestCase {
|
||||||
buildDynamicNodes(nodeSettings, 1);
|
buildDynamicNodes(nodeSettings, 1);
|
||||||
fail("Expected IllegalArgumentException");
|
fail("Expected IllegalArgumentException");
|
||||||
} catch (IllegalArgumentException e) {
|
} catch (IllegalArgumentException e) {
|
||||||
assertThat(e.getMessage(), containsString("No enum constant"));
|
assertThat(e.getMessage(), containsString("does_not_exist is unknown for discovery.ec2.host_type"));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue