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

Jean-Noel Rouvignac
07.32.2014 66afe07ef9ce9f3f01af52d1be95bf74563ded3b
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
opends/src/server/org/opends/server/replication/server/ECLServerHandler.java 2 ●●● patch | view | raw | blame | history
opends/src/server/org/opends/server/replication/server/ECLServerHandler.java
@@ -719,7 +719,7 @@
          startStatesFromProvidedCookie.remove(domain.getBaseDN());
      if (startECLSessionMsg.getPersistent() == PERSISTENT_CHANGES_ONLY)
      {
        newDomainCtxt = newDomainContext(domain, null, latestState);
        newDomainCtxt = newDomainContext(domain, latestState, null);
      }
      else
      {