Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
2.0.0-M20, 2.0.0-M21, 2.0.0-M22, 2.0.0-M23
-
None
-
None
-
windows 7 ,linux.
Description
the org.apache.directory.server.core.event.EventInterceptor class didn't override the destory method. and the thread pool didn't call shutdown method.i think it should call thread pool's shutdown method in the inteceptor's destory method and it should call destory inteceptor in the org.apache.directory.server.core.DefaultDirectoryService's shutdown method. such as:
public synchronized void shutdown() throws Exception
{**********
**************
this.destoryInteceptors();
}
private void destoryInteceptors() {
for (Interceptor interceptor : interceptors)
}