Skip to content

Commit 660eef7

Browse files
committed
api: fix scale or upgrade systemvm
1 parent 0d5a0ea commit 660eef7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

api/src/main/java/org/apache/cloudstack/api/command/admin/systemvm/ScaleSystemVMCmd.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public Long getServiceOfferingId() {
7676
}
7777

7878
public Map<String, String> getDetails() {
79-
return details;
79+
return convertDetailsToMap(details);
8080
}
8181

8282
/////////////////////////////////////////////////////

api/src/main/java/org/apache/cloudstack/api/command/admin/systemvm/UpgradeSystemVMCmd.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ public Long getServiceOfferingId() {
7070
}
7171

7272
public Map<String, String> getDetails() {
73-
return details;
73+
return convertDetailsToMap(details);
7474
}
7575

7676
/////////////////////////////////////////////////////

0 commit comments

Comments
 (0)