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

gbellato
23.04.2007 148dce21d0f08c7c6b27ca3381c8a0e5dda9bf02
fix for issue 2097 : total update fails sending a Message to ReplicationCache

The total update was failing because the updated server was badly exiting the loop
of meessage reception when it was receiving a message other than total update messages.

This was caused by a mis-placed return null statement .

1 files modified
2 ■■■ changed files
opendj-sdk/opends/src/server/org/opends/server/replication/plugin/ReplicationDomain.java 2 ●●● patch | view | raw | blame | history
opendj-sdk/opends/src/server/org/opends/server/replication/plugin/ReplicationDomain.java
@@ -2211,8 +2211,8 @@
      {
        ieContext.exception = new DirectoryException(ResultCode.OTHER,
            Message.raw("received an unexpected message type"), e);
        return null;
      }
      return null;
    }
  }