> final NodeApi nodeApi = api.getNodeApiForZoneAndLoadBalancer(zone,
> lbId);
>
> return new Function<Object, IterableWithMarker<Node>>() {
>
> @Override
> public IterableWithMarker<Node> apply(Object input) {
> - IterableWithMarker<Node> list =
> nodeApi.list(marker(input.toString()));
> + PaginationOptions paginationOptions =
> PaginationOptions.class.cast(input);
> + IterableWithMarker<Node> list =
> nodeApi.list(paginationOptions);
> return list;
See comment above
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/191/files#r7234715