andreaturli commented on this pull request.
> + transform(listLocations(), new Function<Region, String>() {
+ @Override
+ public String apply(Region location) {
+ return location.id();
+ }
+ }));
+
+ for (String regionId : availableLocationNames) {
+ instances.addAll(api.instanceApi().list(regionId).concat());
+ }
+ return instances.build();
+ }
+
+ @Override
+ public Iterable<Instance> listNodesByIds(final Iterable<String> ids) {
+ return filter(listNodes(), new Predicate<Instance>() {
done
--
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/443#discussion_r207133421