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

Matthew Swift
25.07.2011 2c8cf2f7080321ad1c3d80bf51c82e4c08aa5a77
opends/src/server/org/opends/server/replication/server/ServerWriter.java
@@ -75,9 +75,14 @@
  public ServerWriter(ProtocolSession session, ServerHandler handler,
      ReplicationServerDomain replicationServerDomain)
  {
    super("Replication server RS(" + handler.getReplicationServerId()
        + ") writing to " + handler.toString() + " at "
        + session.getReadableRemoteAddress());
    // Session may be null for ECLServerWriter.
    super("Replication server RS("
        + handler.getReplicationServerId()
        + ") writing to "
        + handler.toString()
        + " at "
        + ((session != null) ? session.getReadableRemoteAddress()
            : "unknown"));
    this.session = session;
    this.handler = handler;