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 2018/06/24 13:03:15 UTC

[1/2] curator git commit: [CURATOR-450] Fix dead link in 'Getting Started' documentation + update protocol: http -> https

Repository: curator
Updated Branches:
  refs/heads/master 9383aa3e9 -> a1f620efe


[CURATOR-450] Fix dead link in 'Getting Started' documentation + update protocol: http -> https


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

Branch: refs/heads/master
Commit: 2af84b9f7cfee179e6a88f490297f0f3f6419f36
Parents: debebe9
Author: Lee Dongjin <do...@alcacruz.com>
Authored: Fri Mar 2 23:06:21 2018 +0900
Committer: Lee Dongjin <do...@alcacruz.com>
Committed: Fri Mar 2 23:06:21 2018 +0900

----------------------------------------------------------------------
 src/site/confluence/errors.confluence          | 4 ++--
 src/site/confluence/getting-started.confluence | 4 ++--
 src/site/confluence/logging.confluence         | 2 +-
 3 files changed, 5 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/curator/blob/2af84b9f/src/site/confluence/errors.confluence
----------------------------------------------------------------------
diff --git a/src/site/confluence/errors.confluence b/src/site/confluence/errors.confluence
index f58c8d7..b4f6643 100644
--- a/src/site/confluence/errors.confluence
+++ b/src/site/confluence/errors.confluence
@@ -3,7 +3,7 @@ h1. Error Handling
 h2. Background
 ZooKeeper is a very low level system that requires users to do a lot of housekeeping. See:
 
-* [[http://wiki.apache.org/hadoop/ZooKeeper/FAQ]]
+* [[https://wiki.apache.org/hadoop/ZooKeeper/FAQ]]
 
 The Curator [[Framework|curator-framework/index.html]] is designed to hide as much of the details/tedium of this housekeeping as is possible.
 
@@ -23,7 +23,7 @@ Curator exposes several listenable interfaces for clients to monitor the state o
 appropriate action. These are the possible state changes:
 
 |CONNECTED|Sent for the first successful connection to the server. NOTE: You will only get one of these messages for any CuratorFramework instance.|
-|READ_ONLY|The connection has gone into read\-only mode. This can only happen if you pass true for CuratorFrameworkFactory.Builder.canBeReadOnly(). See the ZooKeeper doc regarding read only connections: [[http://wiki.apache.org/hadoop/ZooKeeper/GSoCReadOnlyMode]]. The connection will remain in read only mode until another state change is sent.|
+|READ_ONLY|The connection has gone into read\-only mode. This can only happen if you pass true for CuratorFrameworkFactory.Builder.canBeReadOnly(). See the ZooKeeper doc regarding read only connections: [[https://wiki.apache.org/hadoop/ZooKeeper/GSoCReadOnlyMode]]. The connection will remain in read only mode until another state change is sent.|
 |SUSPENDED|There has been a loss of connection. Leaders, locks, etc. should suspend until the connection is re\-established.|
 |RECONNECTED|A suspended or lost connection has been re\-established.|
 |LOST|Curator will set the LOST state when it believes that the ZooKeeper session has expired. ZooKeeper connections have a session. When the session expires, clients must take appropriate action. In Curator, this is complicated by the fact that Curator internally manages the ZooKeeper connection. Curator will set the LOST state when any of the following occurs: a) ZooKeeper returns a Watcher.Event.KeeperState.Expired or KeeperException.Code.SESSIONEXPIRED; b) Curator closes the internally managed ZooKeeper instance; c) The session timeout elapses during a network partition. It is possible to get a RECONNECTED state after this but you should still consider any locks, etc. as dirty/unstable. *NOTE*: The meaning of LOST has changed since Curator 3.0.0. Prior to 3.0.0 LOST only meant that the retry policy had expired.|

http://git-wip-us.apache.org/repos/asf/curator/blob/2af84b9f/src/site/confluence/getting-started.confluence
----------------------------------------------------------------------
diff --git a/src/site/confluence/getting-started.confluence b/src/site/confluence/getting-started.confluence
index 9d4aab2..5a763bc 100644
--- a/src/site/confluence/getting-started.confluence
+++ b/src/site/confluence/getting-started.confluence
@@ -2,7 +2,7 @@ h1. Getting Started
 
 h2. Learn ZooKeeper
 
-Curator users are assumed to know ZooKeeper. A good place to start is here: [[http://zookeeper.apache.org/doc/trunk/zookeeperStarted.html]]
+Curator users are assumed to know ZooKeeper. A good place to start is here: [[https://zookeeper.apache.org/doc/current/zookeeperStarted.html]]
 
 h2. Using Curator
 
@@ -14,7 +14,7 @@ want a wrapper around ZooKeeper that adds connection management and retry polici
 
 h2. Getting a Connection
 
-Curator uses [[Fluent Style|http://en.wikipedia.org/wiki/Fluent%5Finterface]]. If you haven't used this before, it might seem odd
+Curator uses [[Fluent Style|https://en.wikipedia.org/wiki/Fluent%5Finterface]]. If you haven't used this before, it might seem odd
 so it's suggested that you familiarize yourself with the style.
 
 Curator connection instances ({{CuratorFramework}}) are allocated from the {{CuratorFrameworkFactory}}. You only need *one*

http://git-wip-us.apache.org/repos/asf/curator/blob/2af84b9f/src/site/confluence/logging.confluence
----------------------------------------------------------------------
diff --git a/src/site/confluence/logging.confluence b/src/site/confluence/logging.confluence
index 9f87c52..5448846 100644
--- a/src/site/confluence/logging.confluence
+++ b/src/site/confluence/logging.confluence
@@ -5,7 +5,7 @@ Curator is logging and tracing neutral. The Curator code is instrumented with lo
 but uses a driver mechanism that allows easy integration into your preferred logging and tracing frameworks.
 
 h2. Logging
-Curator uses SLF4J ([[http://www.slf4j.org/]]) for logging. SLF4J is a facade over logging that allows you to
+Curator uses SLF4J ([[https://www.slf4j.org/]]) for logging. SLF4J is a facade over logging that allows you to
 plug in any (or no) logging framework. See the SLF4J website for details.
 
 h2. Tracing


[2/2] curator git commit: Merge branch 'feature/CURATOR-450' of github.com:dongjinleekr/curator into CURATOR-450

Posted by ra...@apache.org.
Merge branch 'feature/CURATOR-450' of github.com:dongjinleekr/curator into CURATOR-450


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

Branch: refs/heads/master
Commit: a1f620efe00916db168c7405a46b32dfe89a9965
Parents: 9383aa3 2af84b9
Author: randgalt <ra...@apache.org>
Authored: Sun Jun 24 08:02:45 2018 -0500
Committer: randgalt <ra...@apache.org>
Committed: Sun Jun 24 08:02:45 2018 -0500

----------------------------------------------------------------------
 src/site/confluence/errors.confluence          | 4 ++--
 src/site/confluence/getting-started.confluence | 4 ++--
 src/site/confluence/logging.confluence         | 2 +-
 3 files changed, 5 insertions(+), 5 deletions(-)
----------------------------------------------------------------------