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

neil_a_wilson
06.42.2007 87634d96bab9626809797c5d2dad68b07ec2961f
opends/src/server/org/opends/server/core/DirectoryServer.java
@@ -967,6 +967,14 @@
      }
      // Determine whether or not we should start the connection handlers.
      String disableProperty =
                  System.getProperty(PROPERTY_DISABLE_CONNECTION_HANDLERS);
      boolean startConnectionHandlers =
                   ((disableProperty == null) ||
                    (! disableProperty.equalsIgnoreCase("true")));
      // Initialize all the schema elements.
      initializeSchema();
@@ -1052,7 +1060,10 @@
      // Initialize all the connection handlers.
      initializeConnectionHandlers();
      if (startConnectionHandlers)
      {
        initializeConnectionHandlers();
      }
      // Initialize all the monitor providers.
@@ -1093,9 +1104,12 @@
      // At this point, we should be ready to go.  Start all the connection
      // handlers.
      for (ConnectionHandler c : connectionHandlers)
      if (startConnectionHandlers)
      {
        c.start();
        for (ConnectionHandler c : connectionHandlers)
        {
          c.start();
        }
      }