Skip to content

Commit 123e9f8

Browse files
committed
fixed a variable name broken by merge conflicts
1 parent 237bd46 commit 123e9f8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

server/src/com/cloud/api/ApiServer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1003,7 +1003,7 @@ public ResponseObject loginUser(final HttpSession session, final String username
10031003
final Map<String, Object[]> requestParameters) throws CloudAuthenticationException {
10041004
// We will always use domainId first. If that does not exist, we will use domain name. If THAT doesn't exist
10051005
// we will default to ROOT
1006-
final Domain userDomain = _domainMgr.findDomainByIdOrPath(domainId, domainPath);
1006+
final Domain userDomain = domainMgr.findDomainByIdOrPath(domainId, domainPath);
10071007
if (userDomain == null || userDomain.getId() < 1L) {
10081008
throw new CloudAuthenticationException("Unable to find the domain from the path " + domainPath);
10091009
} else {

0 commit comments

Comments
 (0)