GUACAMOLE-234: Merge changes maintaining open LDAP connection following call to bindAs().

This commit is contained in:
Mike Jumper
2019-09-01 15:07:03 -07:00
committed by GitHub

View File

@@ -129,7 +129,8 @@ public class LDAPConnectionService {
throws GuacamoleException {
// Get ldapConnection and try to connect and bind.
try (LdapNetworkConnection ldapConnection = createLDAPConnection()) {
LdapNetworkConnection ldapConnection = createLDAPConnection();
try {
// Connect to LDAP server
ldapConnection.connect();
@@ -155,6 +156,7 @@ public class LDAPConnectionService {
// Disconnect if an error occurs during bind
catch (LdapException e) {
ldapConnection.close();
logger.debug("Unable to bind to LDAP server.", e);
throw new GuacamoleInvalidCredentialsException(
"Unable to bind to the LDAP server.",