> return input.get() != null;
> }
> }, operationCompleteCheckTimeout, operationCompleteCheckInterval,
> MILLISECONDS).apply(instance);
> }
>
> - InstanceInZone instanceInZone = new InstanceInZone(instance.get(),
> template.getLocation().getId());
> + // Add tags for security groups
> + final FirewallTagNamingConvention naming =
> firewallTagNamingConvention.get(group);
> + Set<String> tags =
> FluentIterable.from(Ints.asList(options.getInboundPorts()))
> + .transform(new Function<Integer, String>(){
> + @Override
> + public String apply(Integer input) {
> + return input != null
Can `options.getInboundPorts()` contain `null` entries?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/33/files#r7512517