trevorflanagan commented on this pull request.
> throw new IllegalStateException(message);
}
}
+ public static void waitForVmToolsRunning(ServerApi api, String serverId,
long timeoutMillis, String message) {
+ boolean vmwareToolsRunning = retry(new VMToolsRunningStatus(api),
timeoutMillis).apply(serverId);
+ if (!vmwareToolsRunning) {
+ throw new IllegalStateException(message);
+ }
+ }
I understand what you are looking for. I will not make the change yet since we
have not added our DimensionDataCloudControlServiceContextModule instance yet.
When this is added (maybe next week) I will add this change too.
--
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/400#discussion_r152009418