api: fix scale or upgrade systemvm (#11062)

This commit is contained in:
Wei Zhou 2025-08-08 12:36:18 +02:00 committed by GitHub
parent b9864cb1e1
commit 78e146278b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -76,7 +76,7 @@ public class ScaleSystemVMCmd extends BaseAsyncCmd {
}
public Map<String, String> getDetails() {
return details;
return convertDetailsToMap(details);
}
/////////////////////////////////////////////////////

View File

@ -70,7 +70,7 @@ public class UpgradeSystemVMCmd extends BaseCmd {
}
public Map<String, String> getDetails() {
return details;
return convertDetailsToMap(details);
}
/////////////////////////////////////////////////////