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

lutoff
10.47.2007 aef4b9746b63716f94fe51edfa9126531eb7331a
Fix for issue #1880 (Runtime Exceptions in Jmx connection code)

Runtime exception should also be are catched when starting the connector.
1 files modified
8 ■■■■ changed files
opendj-sdk/opends/src/server/org/opends/server/protocols/jmx/JmxConnectionHandler.java 8 ●●●● patch | view | raw | blame | history
opendj-sdk/opends/src/server/org/opends/server/protocols/jmx/JmxConnectionHandler.java
@@ -499,7 +499,13 @@
   * {@inheritDoc}
   */
  public void run() {
    rmiConnector.initialize();
    try
    {
      rmiConnector.initialize();
    }
    catch (RuntimeException e)
    {
    }
  }