Skip to content

Commit b7fe103

Browse files
committed
fix id obtention in disable account api
1 parent 0681977 commit b7fe103

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

api/src/main/java/org/apache/cloudstack/api/command/admin/account/DisableAccountCmd.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ public String getEventDescription() {
111111
String message = "Disabling account ";
112112

113113
if (getId() != null) {
114-
message += "with id: " + getId();
114+
message += "with id: " + getResourceUuid(ApiConstants.ID);
115115
} else {
116116
message += getAccountName() + " in domain: " + getResourceUuid(ApiConstants.DOMAIN_ID);
117117
}

0 commit comments

Comments
 (0)