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

Jean-Noel Rouvignac
11.05.2014 24aadf161c65904fb1f6a2194779ccc226ef17a1
Fixed NPE on querying cn=changelog with persistent search.
Regression was introduced in r10655.

ECLServerHandler.java:
In buildDomainContexts(), fixed the code to match the code behaviour pre r10655.
1 files modified
2 ■■■ changed files
opendj3-server-dev/src/server/org/opends/server/replication/server/ECLServerHandler.java 2 ●●● patch | view | raw | blame | history
opendj3-server-dev/src/server/org/opends/server/replication/server/ECLServerHandler.java
@@ -724,7 +724,7 @@
          startStatesFromProvidedCookie.remove(domain.getBaseDN());
      if (startECLSessionMsg.getPersistent() == PERSISTENT_CHANGES_ONLY)
      {
        newDomainCtxt = newDomainContext(domain, null, latestState);
        newDomainCtxt = newDomainContext(domain, latestState, null);
      }
      else
      {