Skip to content

Commit

Permalink
next patch release
Browse files Browse the repository at this point in the history
  • Loading branch information
mmoayyed committed Feb 20, 2023
1 parent c61752b commit ac34a21
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Platform metadata for releases, POM generation, etc.
##################################################
group=org.apereo.cas
version=6.5.10-SNAPSHOT
version=6.5.9.1
projectUrl=https://www.apereo.org/cas
projectInceptionYear=2004
projectScmUrl=scm:[email protected]:apereo/cas.git
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,9 @@ protected SearchResponse performLdapSearch(final String ldapURL) throws LdapExce
*/
protected ConnectionFactory prepareConnectionFactory(final String ldapURL) {
val cc = ConnectionConfig.copy(this.connectionConfig);
if (!cc.getLdapUrl().equals(ldapURL)) {
cc.setConnectionInitializers();
}
cc.setLdapUrl(ldapURL);
return new DefaultConnectionFactory(cc);
}
Expand Down

0 comments on commit ac34a21

Please sign in to comment.