This is an automated email from the ASF dual-hosted git repository.

sureshanaparti pushed a commit to branch 4.20
in repository https://gitbox.apache.org/repos/asf/cloudstack.git


The following commit(s) were added to refs/heads/4.20 by this push:
     new 2944bd1eda1 API: Set Object name when expunging VM (#11352)
2944bd1eda1 is described below

commit 2944bd1eda1fd587dc8301a15c0ea70a6919931a
Author: Pearl Dsilva <pearl1...@gmail.com>
AuthorDate: Thu Jul 31 01:41:40 2025 -0400

    API: Set Object name when expunging VM (#11352)
---
 .../java/org/apache/cloudstack/api/command/user/vm/DestroyVMCmd.java   | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git 
a/api/src/main/java/org/apache/cloudstack/api/command/user/vm/DestroyVMCmd.java 
b/api/src/main/java/org/apache/cloudstack/api/command/user/vm/DestroyVMCmd.java
index aa121162cb4..18a9d2058a6 100644
--- 
a/api/src/main/java/org/apache/cloudstack/api/command/user/vm/DestroyVMCmd.java
+++ 
b/api/src/main/java/org/apache/cloudstack/api/command/user/vm/DestroyVMCmd.java
@@ -140,7 +140,8 @@ public class DestroyVMCmd extends BaseAsyncCmd implements 
UserCmd {
             if (responses != null && !responses.isEmpty()) {
                 response = responses.get(0);
             }
-            response.setResponseName("virtualmachine");
+            response.setResponseName(getCommandName());
+            response.setObjectName("virtualmachine");
             setResponseObject(response);
         } else {
             throw new ServerApiException(ApiErrorCode.INTERNAL_ERROR, "Failed 
to destroy vm");

Reply via email to