Fix the build cause by typo in a un-test check-in! (cherry picked from commit 2848af8126f47f92ebb90191e62778461193cb9b)
Signed-off-by: animesh <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/679aae78 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/679aae78 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/679aae78 Branch: refs/heads/4.2 Commit: 679aae78f3c4e9a94ce50f693e31895a6b254d7e Parents: d6b19ba Author: Kelven Yang <[email protected]> Authored: Thu Aug 29 16:18:36 2013 -0700 Committer: animesh <[email protected]> Committed: Tue Sep 3 16:16:56 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/679aae78/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) {
