From 5c689f3db71cce84ea085d37ed4a161f29c02e1f Mon Sep 17 00:00:00 2001 From: abhishek Date: Wed, 8 Dec 2010 12:08:20 -0800 Subject: [PATCH] bug 7437: the password is being set in the vm obj, but was being reset before returning the result obj. correcting the same status 7437: resolved fixed --- api/src/com/cloud/api/commands/DeployVMCmd.java | 1 - 1 file changed, 1 deletion(-) diff --git a/api/src/com/cloud/api/commands/DeployVMCmd.java b/api/src/com/cloud/api/commands/DeployVMCmd.java index b84929bb131..8e58338a80c 100644 --- a/api/src/com/cloud/api/commands/DeployVMCmd.java +++ b/api/src/com/cloud/api/commands/DeployVMCmd.java @@ -220,7 +220,6 @@ public class DeployVMCmd extends BaseAsyncCreateCmd { result = _userVmService.startVirtualMachine(this); if (result != null) { UserVmResponse response = _responseGenerator.createUserVm2Response(result); - response.setPassword(password); response.setResponseName(getName()); this.setResponseObject(response); } else {