This is an automated email from the ASF dual-hosted git repository.

randgalt pushed a change to branch CURATOR-549-zk36-updates
in repository https://gitbox.apache.org/repos/asf/curator.git.


    omit b825fc9  CURATOR-549
     add c05a61b  Fix typo
     add a470379  - ServiceCacheImpl should allow the self-created executor 
service to be closed - Allow an optional executor service for ServiceProvider
     add 34fdb43  Merge pull request #343 from naude-r/servicecache_thread_leak
     add 75226fb  CURATOR-551 (#345)
     add 7670ae3  [CURATOR-548] Bump zookeeper version to 3.5.7
     add 9c54bab  CURATOR-560
     add 959c1ca  CURATOR-559 (#346)
     add 009bfc4  CURATOR-562 - Remove ConnectionHandlingPolicy - flatten out 
behavior to match old StandardConnectionHandlingPolicy - closes #348
     add 9745ec4  CURATOR-562 - Remove ConnectionHandlingPolicy - flatten out 
behavior to match old StandardConnectionHandlingPolicy
     add 55a6d92  Merge branch 'master' of 
https://gitbox.apache.org/repos/asf/curator
     add d1a9234  CURATOR-558 (#344)
     new 38b7e6b  CURATOR-549

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (b825fc9)
            \
             N -- N -- N   refs/heads/CURATOR-549-zk36-updates (38b7e6b)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../java/org/apache/curator/ConnectionState.java   |  95 +--
 .../org/apache/curator/CuratorZookeeperClient.java |  45 +-
 .../main/java/org/apache/curator/HandleHolder.java |  70 +--
 .../src/main/java/org/apache/curator/Helper.java   |  36 +-
 .../main/java/org/apache/curator/RetryLoop.java    | 122 ++--
 .../java/org/apache/curator/RetryLoopImpl.java     | 100 ++++
 .../connection/ConnectionHandlingPolicy.java       | 111 ----
 .../StandardConnectionHandlingPolicy.java          |  86 ---
 .../curator/connection/ThreadLocalRetryLoop.java   | 156 +++++
 .../exhibitor/DefaultExhibitorRestClient.java      |  68 ---
 .../exhibitor/ExhibitorEnsembleProvider.java       | 335 -----------
 .../ensemble/exhibitor/ExhibitorRestClient.java    |  34 --
 .../curator/ensemble/exhibitor/Exhibitors.java     |  66 ---
 .../org/apache/curator/utils/Compatibility.java    | 101 +---
 .../curator/utils/DefaultZookeeperFactory.java     |  18 +-
 .../curator/utils/InjectSessionExpiration.java     |  77 ---
 .../test/java/org/apache/curator/BasicTests.java   |   3 +-
 .../java/org/apache/curator/TestEnsurePath.java    |   7 +-
 .../src/test/java/org/apache/curator/TestIs36.java |  22 +
 .../apache/curator/TestSessionFailRetryLoop.java   |   9 +-
 .../exhibitor/TestExhibitorEnsembleProvider.java   | 227 --------
 .../apache/curator/framework/CuratorFramework.java |  14 -
 .../curator/framework/CuratorFrameworkFactory.java |  93 +--
 .../apache/curator/framework/SafeIsTtlMode.java    |  44 --
 .../framework/imps/CompatibleCreateCallback.java   |  26 -
 .../curator/framework/imps/CreateBuilderImpl.java  |  78 +--
 .../apache/curator/framework/imps/CreateZK35.java  |  47 --
 .../framework/imps/CuratorFrameworkImpl.java       |  95 +--
 .../imps/CuratorMultiTransactionImpl.java          |  18 +-
 .../framework/imps/WatcherRemovalManager.java      |   7 +-
 .../framework/listen/ListenerContainer.java        | 112 ----
 .../framework/listen/MappingListenerManager.java   |   3 +-
 .../curator/framework/state/ConnectionState.java   |  12 +-
 .../framework/state/ConnectionStateManager.java    |   3 +-
 .../curator/framework/imps/TestCleanState.java     |   7 -
 .../framework/imps/TestCreateReturningStat.java    |   1 -
 .../imps/TestEnabledSessionExpiredState.java       |   3 +-
 .../curator/framework/imps/TestFramework.java      |   1 -
 .../curator/framework/imps/TestFrameworkEdges.java |  10 +-
 .../framework/imps/TestReconfiguration.java        |   2 +-
 .../curator/framework/imps/TestTtlNodes.java       |   1 -
 .../framework/imps/TestWatcherRemovalManager.java  |   1 -
 .../curator/framework/imps/TestWatchesBuilder.java |   1 -
 .../state/TestConnectionStateManager.java          |   3 +-
 .../curator/framework/recipes/cache/NodeCache.java |  39 +-
 .../framework/recipes/cache/PathChildrenCache.java |  39 +-
 .../curator/framework/recipes/cache/TreeCache.java |  49 +-
 .../framework/recipes/leader/LeaderLatch.java      |  25 +-
 .../framework/recipes/locks/ChildReaper.java       | 307 ----------
 .../curator/framework/recipes/locks/Reaper.java    | 380 ------------
 .../framework/recipes/nodes/PersistentNode.java    |  41 +-
 .../recipes/queue/DistributedDelayQueue.java       |   4 +-
 .../recipes/queue/DistributedIdQueue.java          |   4 +-
 .../recipes/queue/DistributedPriorityQueue.java    |   4 +-
 .../framework/recipes/queue/DistributedQueue.java  |  63 +-
 .../curator/framework/recipes/queue/QueueBase.java |   4 +-
 .../framework/recipes/shared/SharedValue.java      |  52 +-
 .../recipes/shared/SharedValueReader.java          |   4 +-
 .../connection/TestThreadLocalRetryLoop.java       | 118 ++++
 .../framework/recipes/cache/TestNodeCache.java     |   3 +-
 .../recipes/cache/TestPathChildrenCache.java       |   3 +-
 .../framework/recipes/cache/TestTreeCache.java     |   5 +-
 .../recipes/leader/TestLeaderLatchCluster.java     |  22 +-
 .../recipes/leader/TestLeaderSelector.java         |   3 +-
 .../recipes/leader/TestLeaderSelectorEdges.java    |   1 -
 .../framework/recipes/locks/TestChildReaper.java   | 351 -----------
 .../recipes/locks/TestInterProcessMutex.java       |   3 +-
 .../recipes/locks/TestInterProcessMutexBase.java   |   3 +-
 .../recipes/locks/TestInterProcessSemaphore.java   |  47 --
 .../framework/recipes/locks/TestReaper.java        | 647 ---------------------
 .../recipes/nodes/TestPersistentEphemeralNode.java |   9 +-
 .../recipes/nodes/TestPersistentTtlNode.java       |   1 -
 curator-test-zk34/README.md                        |  11 -
 curator-test-zk34/pom.xml                          | 191 ------
 .../org/apache/curator/test/TestCompatibility.java |  97 ---
 .../src/test/resources/log4j.properties            |  27 -
 curator-test-zk35/pom.xml                          |   2 +-
 .../java/org/apache/curator/zk35/TestIs35.java     |  16 +
 .../org/apache/curator/test/BaseClassForTests.java |  18 +-
 .../org/apache/curator/test/Compatibility.java     |   7 +-
 .../curator/test/FailedServerStartException.java   |  11 +-
 .../java/org/apache/curator/test/InstanceSpec.java |   1 +
 .../apache/curator/test/QuorumConfigBuilder.java   |  11 +-
 .../apache/curator/test/TestingQuorumPeerMain.java |   4 +-
 .../apache/curator/test/TestingZooKeeperMain.java  |  22 +-
 .../org/apache/curator/test/ZooKeeperMainFace.java |   6 +-
 .../test/compatibility/CuratorTestBase.java        |   2 -
 .../apache/curator/test/compatibility/Timing2.java |  11 +
 .../x/async/modeled/details/ModeledCacheImpl.java  |  21 +-
 .../curator/x/discovery/ServiceCacheBuilder.java   |   2 +
 .../x/discovery/ServiceProviderBuilder.java        |  26 +-
 .../discovery/details/ServiceCacheBuilderImpl.java |   5 +-
 .../x/discovery/details/ServiceCacheImpl.java      |  81 +--
 .../details/ServiceProviderBuilderImpl.java        |  21 +-
 .../x/discovery/details/ServiceProviderImpl.java   |  25 +-
 .../x/discovery/details/TestServiceDiscovery.java  |   7 +-
 pom.xml                                            |   9 +-
 src/site/confluence/breaking-changes.confluence    |  10 +
 src/site/confluence/exhibitor.confluence           |  24 -
 src/site/confluence/index.confluence               |  12 +-
 ...y.confluence => zk-compatibility-34.confluence} |  27 +-
 src/site/site.xml                                  |   8 +-
 102 files changed, 970 insertions(+), 4346 deletions(-)
 copy 
curator-framework/src/main/java/org/apache/curator/framework/imps/PathAndBytes.java
 => curator-client/src/main/java/org/apache/curator/Helper.java (56%)
 create mode 100644 
curator-client/src/main/java/org/apache/curator/RetryLoopImpl.java
 delete mode 100644 
curator-client/src/main/java/org/apache/curator/connection/ConnectionHandlingPolicy.java
 delete mode 100644 
curator-client/src/main/java/org/apache/curator/connection/StandardConnectionHandlingPolicy.java
 create mode 100644 
curator-client/src/main/java/org/apache/curator/connection/ThreadLocalRetryLoop.java
 delete mode 100644 
curator-client/src/main/java/org/apache/curator/ensemble/exhibitor/DefaultExhibitorRestClient.java
 delete mode 100644 
curator-client/src/main/java/org/apache/curator/ensemble/exhibitor/ExhibitorEnsembleProvider.java
 delete mode 100644 
curator-client/src/main/java/org/apache/curator/ensemble/exhibitor/ExhibitorRestClient.java
 delete mode 100644 
curator-client/src/main/java/org/apache/curator/ensemble/exhibitor/Exhibitors.java
 delete mode 100644 
curator-client/src/main/java/org/apache/curator/utils/InjectSessionExpiration.java
 create mode 100644 
curator-client/src/test/java/org/apache/curator/TestIs36.java
 delete mode 100644 
curator-client/src/test/java/org/apache/curator/ensemble/exhibitor/TestExhibitorEnsembleProvider.java
 delete mode 100644 
curator-framework/src/main/java/org/apache/curator/framework/SafeIsTtlMode.java
 delete mode 100644 
curator-framework/src/main/java/org/apache/curator/framework/imps/CompatibleCreateCallback.java
 delete mode 100644 
curator-framework/src/main/java/org/apache/curator/framework/imps/CreateZK35.java
 delete mode 100644 
curator-framework/src/main/java/org/apache/curator/framework/listen/ListenerContainer.java
 delete mode 100644 
curator-recipes/src/main/java/org/apache/curator/framework/recipes/locks/ChildReaper.java
 delete mode 100644 
curator-recipes/src/main/java/org/apache/curator/framework/recipes/locks/Reaper.java
 create mode 100644 
curator-recipes/src/test/java/org/apache/curator/connection/TestThreadLocalRetryLoop.java
 delete mode 100644 
curator-recipes/src/test/java/org/apache/curator/framework/recipes/locks/TestChildReaper.java
 delete mode 100644 
curator-recipes/src/test/java/org/apache/curator/framework/recipes/locks/TestReaper.java
 delete mode 100644 curator-test-zk34/README.md
 delete mode 100644 curator-test-zk34/pom.xml
 delete mode 100644 
curator-test-zk34/src/test/java/org/apache/curator/test/TestCompatibility.java
 delete mode 100644 curator-test-zk34/src/test/resources/log4j.properties
 create mode 100644 
curator-test-zk35/src/test/java/org/apache/curator/zk35/TestIs35.java
 rename 
curator-test-zk34/src/test/java/org/apache/curator/test/Compatibility.java => 
curator-test/src/main/java/org/apache/curator/test/FailedServerStartException.java
 (79%)
 create mode 100644 src/site/confluence/breaking-changes.confluence
 delete mode 100644 src/site/confluence/exhibitor.confluence
 rename src/site/confluence/{zk-compatibility.confluence => 
zk-compatibility-34.confluence} (62%)

Reply via email to