fixed a variable name broken by merge conflicts

This commit is contained in:
Will Stevens 2016-05-27 16:32:20 -04:00
parent 237bd46d55
commit 123e9f81ab
1 changed files with 1 additions and 1 deletions

View File

@ -1003,7 +1003,7 @@ public class ApiServer extends ManagerBase implements HttpRequestHandler, ApiSer
final Map<String, Object[]> requestParameters) throws CloudAuthenticationException {
// We will always use domainId first. If that does not exist, we will use domain name. If THAT doesn't exist
// we will default to ROOT
final Domain userDomain = _domainMgr.findDomainByIdOrPath(domainId, domainPath);
final Domain userDomain = domainMgr.findDomainByIdOrPath(domainId, domainPath);
if (userDomain == null || userDomain.getId() < 1L) {
throw new CloudAuthenticationException("Unable to find the domain from the path " + domainPath);
} else {