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 E30AD10686 for ; Tue, 3 Sep 2013 06:53:26 +0000 (UTC) Received: (qmail 94465 invoked by uid 500); 3 Sep 2013 06:53:24 -0000 Delivered-To: apmail-cloudstack-commits-archive@cloudstack.apache.org Received: (qmail 94428 invoked by uid 500); 3 Sep 2013 06:53:17 -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 94417 invoked by uid 99); 3 Sep 2013 06:53:14 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 03 Sep 2013 06:53:14 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 65C208BC4BB; Tue, 3 Sep 2013 06:53:14 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: weizhou@apache.org To: commits@cloudstack.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: git commit: updated refs/heads/master to f555e26 Date: Tue, 3 Sep 2013 06:53:14 +0000 (UTC) Updated Branches: refs/heads/master a7f861f8d -> f555e26c8 CLOUDSTACK-1192: fix silly mistake Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/f555e26c Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/f555e26c Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/f555e26c Branch: refs/heads/master Commit: f555e26c87e1188fa3dcb5c295fc6e6febad0b3e Parents: a7f861f Author: Wei Zhou Authored: Tue Sep 3 08:52:35 2013 +0200 Committer: Wei Zhou Committed: Tue Sep 3 08:52:35 2013 +0200 ---------------------------------------------------------------------- .../src/com/cloud/hypervisor/vmware/resource/VmwareResource.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/f555e26c/plugins/hypervisors/vmware/src/com/cloud/hypervisor/vmware/resource/VmwareResource.java ---------------------------------------------------------------------- diff --git a/plugins/hypervisors/vmware/src/com/cloud/hypervisor/vmware/resource/VmwareResource.java b/plugins/hypervisors/vmware/src/com/cloud/hypervisor/vmware/resource/VmwareResource.java index 4589f31..3e79792 100755 --- a/plugins/hypervisors/vmware/src/com/cloud/hypervisor/vmware/resource/VmwareResource.java +++ b/plugins/hypervisors/vmware/src/com/cloud/hypervisor/vmware/resource/VmwareResource.java @@ -447,7 +447,7 @@ public class VmwareResource implements StoragePoolResource, ServerResource, Vmwa } else if (clz == GetVmStatsCommand.class) { answer = execute((GetVmStatsCommand) cmd); } else if (clz == GetVmDiskStatsCommand.class) { - answer = execute((GetDiskVmStatsCommand) cmd); + answer = execute((GetVmDiskStatsCommand) cmd); } else if (clz == CheckHealthCommand.class) { answer = execute((CheckHealthCommand) cmd); } else if (clz == StopCommand.class) {