mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

neil_a_wilson
18.00.2006 f6ea9a0b75f20cf05c57f1fd36dcb9c1b06afad4
Make sure that the finalizeExtendedOperationHandler method is called for all
such handlers during the Directory Server shutdown process.

OpenDS Issue Number: 672
1 files modified
15 ■■■■■ changed files
opendj-sdk/opends/src/server/org/opends/server/core/DirectoryServer.java 15 ●●●●● patch | view | raw | blame | history
opendj-sdk/opends/src/server/org/opends/server/core/DirectoryServer.java
@@ -6808,6 +6808,21 @@
    }
    // Finalize all of the extended operation handlers.
    for (ExtendedOperationHandler handler :
         directoryServer.extendedOperationHandlers.values())
    {
      try
      {
        handler.finalizeExtendedOperationHandler();
      }
      catch (Exception e)
      {
        assert debugException(CLASS_NAME, "shutDown", e);
      }
    }
    // Shut down all the other components that may need special handling.
    // NYI