mirror of
https://github.com/apache/cloudstack
synced 2026-09-02 09:31:53 +00:00
Fix a typo
CanUseForDeploy() didn't return correct result due to this
This commit is contained in:
parent
b5860725a1
commit
4da47c2ffd
@ -59,7 +59,7 @@ public class UserIpv6AddressDaoImpl extends GenericDaoBase<UserIpv6AddressVO, Lo
|
||||
CountFreePublicIps = createSearchBuilder(Long.class);
|
||||
CountFreePublicIps.select(null, Func.COUNT, null);
|
||||
CountFreePublicIps.and("networkId", CountFreePublicIps.entity().getSourceNetworkId(), SearchCriteria.Op.EQ);
|
||||
CountFreePublicIps.and("vlanId", CountFreePublicIps.entity().getSourceNetworkId(), SearchCriteria.Op.EQ);
|
||||
CountFreePublicIps.and("vlanId", CountFreePublicIps.entity().getVlanId(), SearchCriteria.Op.EQ);
|
||||
CountFreePublicIps.done();
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user