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

mmarie
18.14.2009 433c2789aef9a48691a68db2af4bd85a49e136de
Minimalistic replication-related changes
- Fix for a typo in replication.properties
- Avoid logging a message during shutdown (to avoid spurious traces)
2 files modified
10 ■■■■ changed files
opendj-sdk/opends/src/messages/messages/replication.properties 2 ●●● patch | view | raw | blame | history
opendj-sdk/opends/src/server/org/opends/server/replication/server/ReplicationServer.java 8 ●●●● patch | view | raw | blame | history
opendj-sdk/opends/src/messages/messages/replication.properties
@@ -340,7 +340,7 @@
 starting online full update for exporting suffix %s data to remote directory \
 server %s
NOTICE_FULL_UPDATE_ENGAGED_FOR_REMOTE_END_144=Local directory server %s has \
 finished online full update for exporting suffix datat %s to remote directory \
 finished online full update for exporting suffix data %s to remote directory \
 server %s
NOTICE_TIMEOUT_WHEN_CROSS_CONNECTION_145=Timed out trying to acquire the domain \
lock for %s. Connection attempt from replication server %s to local replication \
opendj-sdk/opends/src/server/org/opends/server/replication/server/ReplicationServer.java
@@ -275,12 +275,16 @@
      {
        // The socket has probably been closed as part of the
        // shutdown or changing the port number process.
        // just log debug information and loop.
        Message message = ERR_EXCEPTION_LISTENING.get(e.getLocalizedMessage());
        // Just log debug information and loop.
        // Do not log the message during shutdown.
        if (shutdown == false) {
          Message message =
            ERR_EXCEPTION_LISTENING.get(e.getLocalizedMessage());
        logError(message);
      }
    }
  }
  }
  /**
   * This method manages the connection with the other replication servers.