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

lutoff
10.47.2007 6c9757994ad52dfbd16bc7047b4a08f24fda6887
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
opends/src/server/org/opends/server/protocols/jmx/JmxConnectionHandler.java 8 ●●●● patch | view | raw | blame | history
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)
    {
    }
  }