Github user jburwell commented on a diff in the pull request: https://github.com/apache/cloudstack/pull/1578#discussion_r77755409 --- Diff: plugins/network-elements/nuage-vsp/src/com/cloud/network/resource/NuageVspResource.java --- @@ -386,6 +392,17 @@ private Answer executeRequest(TrashNetworkVspCommand cmd) { } } + private Answer executeRequest(UpdateDhcpOptionVspCommand cmd) { + try { + isNuageVspManagerLoaded(); + _nuageVspGuruClient.applyDhcpOptions(cmd.getDhcpOptions(), cmd.getNetwork()); + return new Answer(cmd, true, "Update DhcpOptions on VM's in network: " + cmd.getNetwork().getName() + " on Nuage VSD " + _hostName); + } catch (ExecutionException | ConfigurationException e) { + s_logger.error("Failure during " + cmd + " on Nuage VSD " + _hostName, e); --- End diff -- Please add ``cmd.getDhcpOptions`` to the log message to assist with operational debugging.
--- 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. ---