You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@cloudstack.apache.org by Animesh Chaturvedi <an...@citrix.com> on 2013/08/30 01:49:17 UTC

Build failure in 4.2-forward

Folks

We need to compile before checking in a fix especially that we are close to wrapping up on 4.2. Kelven thanks for fixing it


Thanks
Animesh

-----Original Message-----
From: kelveny@apache.org [mailto:kelveny@apache.org] 
Sent: Thursday, August 29, 2013 4:32 PM
To: commits@cloudstack.apache.org
Subject: git commit: updated refs/heads/4.2-forward to 2848af8

Updated Branches:
  refs/heads/4.2-forward 07d79c7ad -> 2848af812


Fix the build cause by typo in a un-test check-in!


Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/2848af81
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/2848af81
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/2848af81

Branch: refs/heads/4.2-forward
Commit: 2848af8126f47f92ebb90191e62778461193cb9b
Parents: 07d79c7
Author: Kelven Yang <ke...@gmail.com>
Authored: Thu Aug 29 16:18:36 2013 -0700
Committer: Kelven Yang <ke...@gmail.com>
Committed: Thu Aug 29 16:18:36 2013 -0700

----------------------------------------------------------------------
 .../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/2848af81/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 97c9acc..96ee201 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
@@ -448,7 +448,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) {