From b9f51eb366c98647544d1d090cb9dbd0d29c6e09 Mon Sep 17 00:00:00 2001 From: "Endi S. Dewata" Date: Tue, 16 Jun 2015 14:12:54 -0400 Subject: Fixed thread leaks during shutdown. Various codes have been modified to properly stop threads during shutdown. A new ID attribute has been added to the LDAP connection factory classes to help identify leaking threads. https://fedorahosted.org/pki/ticket/1327 --- base/server/test/com/netscape/cmscore/app/CMSEngineDefaultStub.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'base/server/test') diff --git a/base/server/test/com/netscape/cmscore/app/CMSEngineDefaultStub.java b/base/server/test/com/netscape/cmscore/app/CMSEngineDefaultStub.java index 0b7518d81..404832c0d 100644 --- a/base/server/test/com/netscape/cmscore/app/CMSEngineDefaultStub.java +++ b/base/server/test/com/netscape/cmscore/app/CMSEngineDefaultStub.java @@ -343,16 +343,16 @@ public class CMSEngineDefaultStub implements ICMSEngine { return null; } - public ILdapConnFactory getLdapBoundConnFactory() throws ELdapException { + public ILdapConnFactory getLdapBoundConnFactory(String id) throws ELdapException { return null; } - public LDAPConnection getBoundConnection(String host, int port, int version, LDAPSSLSocketFactoryExt fac, + public LDAPConnection getBoundConnection(String id, String host, int port, int version, LDAPSSLSocketFactoryExt fac, String bindDN, String bindPW) throws LDAPException { return null; } - public ILdapConnFactory getLdapAnonConnFactory() throws ELdapException { + public ILdapConnFactory getLdapAnonConnFactory(String id) throws ELdapException { return null; } -- cgit