mirror of
https://github.com/nicolabs/ldap-plugin.git
synced 2025-09-07 05:14:24 +02:00
[FIXED HUDSON-2958] Make LDAPSecurityRealm.ldapTemplate field transient
so ~279K lines are not written to config.xml git-svn-id: https://hudson.dev.java.net/svn/hudson/trunk/hudson/main@15003 71c3de6d-444a-0410-be80-ed276b4c234a Originally-Committed-As: 1396fd5541597bc031736ce671257b7efa5eafee
This commit is contained in:
parent
645a6ddf6f
commit
0c863c6bd5
|
@ -242,7 +242,7 @@ public class LDAPSecurityRealm extends SecurityRealm {
|
||||||
/**
|
/**
|
||||||
* Created in {@link #createSecurityComponents()}. Can be used to connect to LDAP.
|
* Created in {@link #createSecurityComponents()}. Can be used to connect to LDAP.
|
||||||
*/
|
*/
|
||||||
private LdapTemplate ldapTemplate;
|
private transient LdapTemplate ldapTemplate;
|
||||||
|
|
||||||
@DataBoundConstructor
|
@DataBoundConstructor
|
||||||
public LDAPSecurityRealm(String server, String rootDN, String userSearchBase, String userSearch, String groupSearchBase, String managerDN, String managerPassword) {
|
public LDAPSecurityRealm(String server, String rootDN, String userSearchBase, String userSearch, String groupSearchBase, String managerDN, String managerPassword) {
|
||||||
|
|
Loading…
Reference in a new issue