Github user sgoeminn commented on a diff in the pull request: https://github.com/apache/cloudstack/pull/1579#discussion_r90509963 --- Diff: plugins/network-elements/nuage-vsp/src/com/cloud/network/element/NuageVspElement.java --- @@ -387,41 +400,39 @@ public boolean canEnableIndividualServices() { @Override public boolean destroy(Network network, ReservationContext context) throws ConcurrentOperationException, ResourceUnavailableException { - if (!canHandle(network, Service.Connectivity)) { - return false; - } - - return true; + return canHandle(network, Service.Connectivity); } @Override public boolean verifyServicesCombination(Set<Service> services) { --- End diff -- We added a Preconditions.checkNotNull check on services.
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---