alibazlamit commented on this pull request.
> @@ -143,4 +143,17 @@ protected Server turnOnServer(String serverId) {
protected Server turnOFFServer(String serverId) {
return api.serverApi().updateStatus(serverId,
Server.UpdateStatus.create(Types.ServerAction.POWER_OFF,
Types.ServerActionMethod.SOFTWARE));
}
+
+ protected Server GetRandomServerWithMonitoringPolicy() throws
InterruptedException {
+ List<Server> result = api.serverApi().list();
+ for (Server server : result) {
+ Thread.sleep(2000);
+ server = api.serverApi().get(server.id());
+ if (server.monitoringPolicy() != null) {
+ return server;
+ }
+ }
+
+ return null;
This has been fixed and updated with the latest changes.
--
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/322