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/01/19 03:05:53 UTC

[3/5] curator git commit: fixed docs/comments that refer to ephemeral

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-3.0
Commit: 55ca08cb1aef3deada6ae6bb128c6fb2f0608777
Parents: e657cf6
Author: randgalt <ra...@apache.org>
Authored: Mon Jan 18 18:11:45 2016 -0500
Committer: randgalt <ra...@apache.org>
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