Repository: curator
Updated Branches:
  refs/heads/CURATOR-287 e657cf66b -> 55ca08cb1


fixed docs/comments that refer to ephemeral


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

Branch: refs/heads/CURATOR-287
Commit: 55ca08cb1aef3deada6ae6bb128c6fb2f0608777
Parents: e657cf6
Author: randgalt <[email protected]>
Authored: Mon Jan 18 18:11:45 2016 -0500
Committer: randgalt <[email protected]>
Committed: Mon Jan 18 18:11:45 2016 -0500

----------------------------------------------------------------------
 .../apache/curator/framework/recipes/nodes/PersistentNode.java | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/curator/blob/55ca08cb/curator-recipes/src/main/java/org/apache/curator/framework/recipes/nodes/PersistentNode.java
----------------------------------------------------------------------
diff --git 
a/curator-recipes/src/main/java/org/apache/curator/framework/recipes/nodes/PersistentNode.java
 
b/curator-recipes/src/main/java/org/apache/curator/framework/recipes/nodes/PersistentNode.java
index fbeaeff..cf0bf38 100644
--- 
a/curator-recipes/src/main/java/org/apache/curator/framework/recipes/nodes/PersistentNode.java
+++ 
b/curator-recipes/src/main/java/org/apache/curator/framework/recipes/nodes/PersistentNode.java
@@ -171,7 +171,7 @@ public class PersistentNode implements Closeable
                 }
                 else if ( event.getResultCode() == 
KeeperException.Code.NOAUTH.intValue() )
                 {
-                    log.warn("Client does not have authorisation to write 
ephemeral node at path {}", event.getPath());
+                    log.warn("Client does not have authorisation to write node 
at path {}", event.getPath());
                     authFailure.set(true);
                     return;
                 }
@@ -211,7 +211,7 @@ public class PersistentNode implements Closeable
     }
 
     /**
-     * You must call start() to initiate the persistent ephemeral node. An 
attempt to create the node
+     * You must call start() to initiate the persistent node. An attempt to 
create the node
      * in the background will be started
      */
     public void start()
@@ -270,7 +270,7 @@ public class PersistentNode implements Closeable
     }
 
     /**
-     * Set data that ephemeral node should set in ZK also writes the data to 
the node
+     * Set data that node should set in ZK also writes the data to the node
      *
      * @param data new data value
      * @throws Exception errors

Reply via email to