Github user koushik-das commented on a diff in the pull request:

    https://github.com/apache/cloudstack/pull/1007#discussion_r43845446
  
    --- Diff: server/src/com/cloud/configuration/ConfigurationManagerImpl.java 
---
    @@ -3310,13 +3331,19 @@ public Vlan dedicatePublicIpRange(final 
DedicatePublicIpRangeCmd cmd) throws Res
                 vlanOwner = 
_accountMgr.getAccount(project.getProjectAccountId());
             }
     
    +        Domain domain = null;
             if (accountName != null && domainId != null) {
                 vlanOwner = _accountDao.findActiveAccount(accountName, 
domainId);
    -        }
    -        if (vlanOwner == null) {
    -            throw new InvalidParameterValueException("Unable to find 
account by name " + accountName);
    -        } else if (vlanOwner.getId() == Account.ACCOUNT_ID_SYSTEM) {
    -            throw new InvalidParameterValueException("Please specify a 
valid account. Cannot dedicate IP range to system account");
    +            if (vlanOwner == null) {
    --- End diff --
    
    vlanOwner check is now done only when account is specified. What about the 
project case which also can set the vlanOwner? 


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to