nacx commented on this pull request.
> + }
+
+ @Override
+ public Iterable<Location> listLocations() {
+ // Will never be called
+ throw new UnsupportedOperationException("Locations are configured in
jclouds properties");
+ }
+
+ @Override
+ public Server getNode(String id) {
+ return api.serverApi().get(id);
+ }
+
+ @Override
+ public void destroyNode(String id) {
+ waitServerUntilAvailable.apply(getNode(id));
Is "available" == powered on"? Because the predicate checks for that status.
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/338