> // node's location is a host
> String zoneId = node.getLocation().getParent().getId();
> FloatingIPApi floatingIpApi =
> novaApi.getFloatingIPExtensionForZone(zoneId).get();
> + Optional<Set<String>> poolNames =
> input.get().getNovaTemplateOptions().get().getFloatingIpPoolNames();
> +
> + Optional<FloatingIP> ip = allocateFloatingIPForNode(floatingIpApi,
> poolNames, node.getId());
> + if (!ip.isPresent()){
[minor] Space before the `{`?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/425/files#r14536697