> tags.add(naming.name(ports));
> }
> + // Add tags coming from firewalls (aka securityGroups)
> + if (!options.getGroups().isEmpty()) {
> + for (String firewallName : options.getGroups()) {
> + Firewall firewall = api.firewalls().get(firewallName);
> + validateFirewall(firewall, network);
This is redundant, as it has already been validated in the
`CreateNodesWithGroupEncodedIntoNameThenAddToSet`.
---
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/pull/985/files/e405020927bd6dcc126b8cc98f8bfa15a95d23d7#r73151054