Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 9DE06200B89 for ; Wed, 7 Sep 2016 05:28:30 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 9CB3C160ACE; Wed, 7 Sep 2016 03:28:30 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 1526A160AA9 for ; Wed, 7 Sep 2016 05:28:29 +0200 (CEST) Received: (qmail 88642 invoked by uid 500); 7 Sep 2016 03:28:29 -0000 Mailing-List: contact dev-help@cloudstack.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cloudstack.apache.org Delivered-To: mailing list dev@cloudstack.apache.org Received: (qmail 88626 invoked by uid 99); 7 Sep 2016 03:28:28 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 07 Sep 2016 03:28:28 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id B78BBDFCC0; Wed, 7 Sep 2016 03:28:28 +0000 (UTC) From: jburwell To: dev@cloudstack.apache.org Reply-To: dev@cloudstack.apache.org References: In-Reply-To: Subject: [GitHub] cloudstack pull request #1578: CLOUDSTACK-9401 : Support for Internal DNS in... Content-Type: text/plain Message-Id: <20160907032828.B78BBDFCC0@git1-us-west.apache.org> Date: Wed, 7 Sep 2016 03:28:28 +0000 (UTC) archived-at: Wed, 07 Sep 2016 03:28:30 -0000 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 infrastructure@apache.org or file a JIRA ticket with INFRA. ---