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 2016/05/19 19:02:20 UTC

[05/35] curator git commit: needs new arg

needs new arg


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

Branch: refs/heads/CURATOR-3.0
Commit: 7f27631cb8d11e7026deca5e6848d9a1e584f0d3
Parents: df3c1c4
Author: randgalt <ra...@apache.org>
Authored: Mon May 2 16:16:52 2016 -0500
Committer: randgalt <ra...@apache.org>
Committed: Mon May 2 16:16:52 2016 -0500

----------------------------------------------------------------------
 .../main/java/org/apache/curator/framework/schema/SchemaSet.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/curator/blob/7f27631c/curator-framework/src/main/java/org/apache/curator/framework/schema/SchemaSet.java
----------------------------------------------------------------------
diff --git a/curator-framework/src/main/java/org/apache/curator/framework/schema/SchemaSet.java b/curator-framework/src/main/java/org/apache/curator/framework/schema/SchemaSet.java
index 0c3dfd5..8a6e19c 100644
--- a/curator-framework/src/main/java/org/apache/curator/framework/schema/SchemaSet.java
+++ b/curator-framework/src/main/java/org/apache/curator/framework/schema/SchemaSet.java
@@ -37,7 +37,7 @@ public class SchemaSet
         .softValues()
         .build(cacheLoader);
 
-    private static final Schema defaultSchema = new Schema(Pattern.compile(".*"), "__default__", new DefaultDataValidator(), Schema.Allowance.CAN, Schema.Allowance.CAN, true, true);
+    private static final Schema defaultSchema = new Schema(Pattern.compile(".*"), "Default schema", new DefaultDataValidator(), Schema.Allowance.CAN, Schema.Allowance.CAN, true, true, true);
 
     public SchemaSet()
     {