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

mmarie
18.14.2009 e9a2437481b4d9105cb9b758d410a7b73cbcd767
Minimalistic replication-related changes
- Fix for a typo in replication.properties
- Avoid logging a message during shutdown (to avoid spurious traces)
2 files modified
12 ■■■■■ changed files
opends/src/messages/messages/replication.properties 2 ●●● patch | view | raw | blame | history
opends/src/server/org/opends/server/replication/server/ReplicationServer.java 10 ●●●● patch | view | raw | blame | history
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 \
opends/src/server/org/opends/server/replication/server/ReplicationServer.java
@@ -275,9 +275,13 @@
      {
        // 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());
        logError(message);
        // 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);
        }
      }
    }
  }