You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@curator.apache.org by ra...@apache.org on 2014/06/18 16:30:08 UTC

[5/7] git commit: CURATOR-114 - Changed constructor to correctly pass the start flag to next constructor.

CURATOR-114 - Changed constructor to correctly pass the start flag to
next constructor.

Project: http://git-wip-us.apache.org/repos/asf/curator/repo
Commit: http://git-wip-us.apache.org/repos/asf/curator/commit/67dbfadc
Tree: http://git-wip-us.apache.org/repos/asf/curator/tree/67dbfadc
Diff: http://git-wip-us.apache.org/repos/asf/curator/diff/67dbfadc

Branch: refs/heads/CURATOR-114
Commit: 67dbfadcefa31e7e73873f85f20c3205218e4d68
Parents: 61eb388
Author: Cameron McKenzie <ca...@unico.com.au>
Authored: Wed Jun 18 14:16:26 2014 +1000
Committer: Cameron McKenzie <ca...@unico.com.au>
Committed: Wed Jun 18 14:16:26 2014 +1000

----------------------------------------------------------------------
 .../src/main/java/org/apache/curator/test/TestingServer.java       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/curator/blob/67dbfadc/curator-test/src/main/java/org/apache/curator/test/TestingServer.java
----------------------------------------------------------------------
diff --git a/curator-test/src/main/java/org/apache/curator/test/TestingServer.java b/curator-test/src/main/java/org/apache/curator/test/TestingServer.java
index c69bf6a..720949a 100644
--- a/curator-test/src/main/java/org/apache/curator/test/TestingServer.java
+++ b/curator-test/src/main/java/org/apache/curator/test/TestingServer.java
@@ -56,7 +56,7 @@ public class TestingServer implements Closeable
      */
     public TestingServer(boolean start) throws Exception
     {
-        this(-1, null);
+        this(-1, null, start);
     }
 
     /**