Github user neykov commented on a diff in the pull request:
https://github.com/apache/brooklyn-server/pull/529#discussion_r97984500
--- Diff:
locations/jclouds/src/main/java/org/apache/brooklyn/location/jclouds/JcloudsLocation.java
---
@@ -625,6 +630,32 @@ public MachineLocation obtain(Map<?,?> flags) throws
NoMachinesAvailableExceptio
}
}
+ protected ManagementAddressResolveOptions
getManagementAddressResolveOptions(
+ NodeMetadata node, ConfigBag setup, Optional<HostAndPort>
sshHostAndPortOverride, Optional<LoginCredentials> userCredentials) {
+ boolean waitForSshable =
!"false".equalsIgnoreCase(setup.get(WAIT_FOR_SSHABLE));
+ boolean waitForWinRmable =
!"false".equalsIgnoreCase(setup.get(WAIT_FOR_WINRM_AVAILABLE));
+ boolean usePortForwarding = setup.get(USE_PORT_FORWARDING);
+ boolean skipJcloudsSshing =
Boolean.FALSE.equals(setup.get(USE_JCLOUDS_SSH_INIT)) || usePortForwarding;
+ boolean windows = isWindows(node, setup);
+ boolean waitForConnectable = windows ? waitForWinRmable :
waitForSshable;
+ String pollForFirstReachable =
setup.get(POLL_FOR_FIRST_REACHABLE_ADDRESS);
--- End diff --
With the reachability check doing credentials check I think
`POLL_FOR_FIRST_REACHABLE_ADDRESS` and `WAIT_FOR_XXX_AVAILABLE` pretty much
overlap now. Suggest (at the very least) adding a TODO somewhere to deprecate
one of them.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---