mirror of https://github.com/apache/cloudstack.git
CLOUDSTACK-9990 : Fix for Account name is giving null in event tab after successful creation of account (#2171)
This commit is contained in:
parent
a4cecd2366
commit
08a6c24efc
|
|
@ -184,7 +184,7 @@ public class CreateAccountCmd extends BaseCmd {
|
|||
@Override
|
||||
public void execute() {
|
||||
validateParams();
|
||||
CallContext.current().setEventDetails("Account Name: " + getAccountName() + ", Domain Id:" + getDomainId());
|
||||
CallContext.current().setEventDetails("Account Name: " + getUsername() + ", Domain Id:" + getDomainId());
|
||||
UserAccount userAccount =
|
||||
_accountService.createUserAccount(getUsername(), getPassword(), getFirstName(), getLastName(), getEmail(), getTimeZone(), getAccountName(), getAccountType(), getRoleId(),
|
||||
getDomainId(), getNetworkDomain(), getDetails(), getAccountUUID(), getUserUUID());
|
||||
|
|
|
|||
Loading…
Reference in New Issue