> @@ -83,8 +79,10 @@ protected AWSEC2ListNodesStrategy(AWSEC2Api client,
> @Region Supplier<Set<String>
>
> spotInstancesByIdInRegion(idsByRegions))),
>
>
> spotConverter), notNull());
> -
> - return concat(super.pollRunningInstancesByRegionsAndIds(idsByRegions),
> spots);
> + System.err.println("spots: " + spots);
> + Iterable<? extends RunningInstance> superInsts =
> super.pollRunningInstancesByRegionsAndIds(idsByRegions);
> + System.err.println("superInsts: " + superInsts);
Use a logger rather than `System.err`? Or is this left-over debug code?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/154/files#r7112708