alibazlamit 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));
I have made another one, now we have wait server until running and wait server
until ready,
ready means its either turned on/off and not having any operation in progress,
running means the server is powered on.
--
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