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

Jean-Noel Rouvignac
05.51.2013 549048acdc1a5802fe4d3070baec46b632b66db6
Fixing NullPointerException in tests.

ReplServerFakeConfiguration.java:
In ctor, if no dirName is provided use "changelogDb" as the path where to store the changelogDB. This is restoring behaviour lost with r9881.
1 files modified
2 ■■■ changed files
opends/tests/unit-tests-testng/src/server/org/opends/server/replication/server/ReplServerFakeConfiguration.java 2 ●●● patch | view | raw | blame | history
opends/tests/unit-tests-testng/src/server/org/opends/server/replication/server/ReplServerFakeConfiguration.java
@@ -78,7 +78,7 @@
      int queueSize, int windowSize, SortedSet<String> servers)
  {
    this.port    = port;
    this.dirName = dirName;
    this.dirName = dirName != null ? dirName : "changelogDb";
    if (purgeDelay == 0)
    {