Return-Path: X-Original-To: apmail-cloudstack-commits-archive@www.apache.org Delivered-To: apmail-cloudstack-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 86ADEF644 for ; Fri, 3 May 2013 19:51:29 +0000 (UTC) Received: (qmail 541 invoked by uid 500); 3 May 2013 19:51:21 -0000 Delivered-To: apmail-cloudstack-commits-archive@cloudstack.apache.org Received: (qmail 495 invoked by uid 500); 3 May 2013 19:51:21 -0000 Mailing-List: contact commits-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 commits@cloudstack.apache.org Received: (qmail 99535 invoked by uid 99); 3 May 2013 19:51:20 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 03 May 2013 19:51:20 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 2A7E08866BB; Fri, 3 May 2013 19:51:20 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: alena1108@apache.org To: commits@cloudstack.apache.org Date: Fri, 03 May 2013 19:51:55 -0000 Message-Id: <29469aae86994580b5a1d349bec9e885@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [37/50] git commit: updated refs/heads/internallb to 1cff609 CLOUDSTACK-2316 Vmware DVSwitch Managed Object reference not being returned by vCenter Set correct property spec path name. Signed-off-by: Sateesh Chodapuneedi Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/28bd1a1a Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/28bd1a1a Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/28bd1a1a Branch: refs/heads/internallb Commit: 28bd1a1af7a15d18cb5fba835fdedade05b5d8c5 Parents: d7cab21 Author: Sateesh Chodapuneedi Authored: Fri May 3 10:40:19 2013 +0530 Committer: Sateesh Chodapuneedi Committed: Fri May 3 10:40:19 2013 +0530 ---------------------------------------------------------------------- .../cloud/hypervisor/vmware/util/VmwareClient.java | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/28bd1a1a/vmware-base/src/com/cloud/hypervisor/vmware/util/VmwareClient.java ---------------------------------------------------------------------- diff --git a/vmware-base/src/com/cloud/hypervisor/vmware/util/VmwareClient.java b/vmware-base/src/com/cloud/hypervisor/vmware/util/VmwareClient.java index e69a3d2..87c7909 100644 --- a/vmware-base/src/com/cloud/hypervisor/vmware/util/VmwareClient.java +++ b/vmware-base/src/com/cloud/hypervisor/vmware/util/VmwareClient.java @@ -528,7 +528,7 @@ public class VmwareClient { PropertySpec pSpec = new PropertySpec(); pSpec.setType(type); pSpec.setAll(false); - pSpec.getPathSet().add(name); + pSpec.getPathSet().add("name"); ObjectSpec oSpec = new ObjectSpec(); oSpec.setObj(root);