This is an automated email from the ASF dual-hosted git repository.
sureshanaparti pushed a commit to branch 4.19
in repository https://gitbox.apache.org/repos/asf/cloudstack.git
The following commit(s) were added to refs/heads/4.19 by this push:
new 78e146278b3 api: fix scale or upgrade systemvm (#11062)
78e146278b3 is described below
commit 78e146278b332bf1ac11d3b2324e0e65debc1e18
Author: Wei Zhou <[email protected]>
AuthorDate: Fri Aug 8 12:36:18 2025 +0200
api: fix scale or upgrade systemvm (#11062)
---
.../apache/cloudstack/api/command/admin/systemvm/ScaleSystemVMCmd.java | 2 +-
.../cloudstack/api/command/admin/systemvm/UpgradeSystemVMCmd.java | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git
a/api/src/main/java/org/apache/cloudstack/api/command/admin/systemvm/ScaleSystemVMCmd.java
b/api/src/main/java/org/apache/cloudstack/api/command/admin/systemvm/ScaleSystemVMCmd.java
index f694988efa0..264806f0350 100644
---
a/api/src/main/java/org/apache/cloudstack/api/command/admin/systemvm/ScaleSystemVMCmd.java
+++
b/api/src/main/java/org/apache/cloudstack/api/command/admin/systemvm/ScaleSystemVMCmd.java
@@ -76,7 +76,7 @@ public class ScaleSystemVMCmd extends BaseAsyncCmd {
}
public Map<String, String> getDetails() {
- return details;
+ return convertDetailsToMap(details);
}
/////////////////////////////////////////////////////
diff --git
a/api/src/main/java/org/apache/cloudstack/api/command/admin/systemvm/UpgradeSystemVMCmd.java
b/api/src/main/java/org/apache/cloudstack/api/command/admin/systemvm/UpgradeSystemVMCmd.java
index 12f80f32b06..95d9ab562bf 100644
---
a/api/src/main/java/org/apache/cloudstack/api/command/admin/systemvm/UpgradeSystemVMCmd.java
+++
b/api/src/main/java/org/apache/cloudstack/api/command/admin/systemvm/UpgradeSystemVMCmd.java
@@ -70,7 +70,7 @@ public class UpgradeSystemVMCmd extends BaseCmd {
}
public Map<String, String> getDetails() {
- return details;
+ return convertDetailsToMap(details);
}
/////////////////////////////////////////////////////