mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-06 05:07:41 +00:00
GUACAMOLE-234: Merge changes maintaining open LDAP connection following call to bindAs().
This commit is contained in:
@@ -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.",
|
||||
|
Reference in New Issue
Block a user