You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by sa...@apache.org on 2013/07/17 21:12:43 UTC

git commit: updated refs/heads/4.2 to 19548ec

Updated Branches:
  refs/heads/4.2 1933960dd -> 19548ec51


CLOUDSTACK-3530 Runtime exception while creating Snapshot from volume (ROOT/DATA)

Worker name is not being configured for CopyCommand.

Signed-off-by: Sateesh Chodapuneedi <sa...@apache.org>


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

Branch: refs/heads/4.2
Commit: 19548ec51cb0efbe5b6b982743117b486cb11a9a
Parents: 1933960
Author: Sateesh Chodapuneedi <sa...@apache.org>
Authored: Thu Jul 18 00:39:28 2013 +0530
Committer: Sateesh Chodapuneedi <sa...@apache.org>
Committed: Thu Jul 18 00:41:27 2013 +0530

----------------------------------------------------------------------
 .../vmware/src/com/cloud/hypervisor/guru/VMwareGuru.java        | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/19548ec5/plugins/hypervisors/vmware/src/com/cloud/hypervisor/guru/VMwareGuru.java
----------------------------------------------------------------------
diff --git a/plugins/hypervisors/vmware/src/com/cloud/hypervisor/guru/VMwareGuru.java b/plugins/hypervisors/vmware/src/com/cloud/hypervisor/guru/VMwareGuru.java
index 4c4d8df..b86b6d9 100644
--- a/plugins/hypervisors/vmware/src/com/cloud/hypervisor/guru/VMwareGuru.java
+++ b/plugins/hypervisors/vmware/src/com/cloud/hypervisor/guru/VMwareGuru.java
@@ -30,6 +30,8 @@ import javax.inject.Inject;
 
 import org.apache.log4j.Logger;
 
+import org.apache.cloudstack.storage.command.CopyCommand;
+
 import com.cloud.agent.api.BackupSnapshotCommand;
 import com.cloud.agent.api.Command;
 import com.cloud.agent.api.CreatePrivateTemplateFromSnapshotCommand;
@@ -89,8 +91,6 @@ import com.cloud.vm.VirtualMachineProfile;
 import com.cloud.vm.VmDetailConstants;
 import com.cloud.vm.dao.NicDao;
 
-import org.apache.cloudstack.storage.command.CopyCommand;
-
 @Local(value=HypervisorGuru.class)
 public class VMwareGuru extends HypervisorGuruBase implements HypervisorGuru {
     private static final Logger s_logger = Logger.getLogger(VMwareGuru.class);
@@ -356,6 +356,7 @@ public class VMwareGuru extends HypervisorGuruBase implements HypervisorGuru {
                         cmd instanceof CreatePrivateTemplateFromVolumeCommand ||
                         cmd instanceof CreatePrivateTemplateFromSnapshotCommand ||
                         cmd instanceof CopyVolumeCommand ||
+                        cmd instanceof CopyCommand ||
                         cmd instanceof CreateVolumeOVACommand ||
                         cmd instanceof PrepareOVAPackingCommand ||
                         cmd instanceof CreateVolumeFromSnapshotCommand) {