You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@shardingsphere.apache.org by du...@apache.org on 2021/08/24 10:11:51 UTC

[shardingsphere] branch master updated (31adf43 -> 34320fa)

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

duanzhengqiang pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/shardingsphere.git.


    from 31adf43  Generate UUID by ThreadLocalRandom in ExecutionGroupContext (#11982)
     add 34320fa  Rename package of shardingsphere-infra-cluster-mode-repository-provider (#11985)

No new revisions were added by this update.

Summary of changes:
 ...rdingsphere.infra.mode.manager.ContextManagerBuilder | 17 +++++++++++++++++
 .../mode/repository/cluster}/etcd/EtcdRepository.java   |  6 +++---
 .../repository/cluster}/etcd/props/EtcdProperties.java  |  2 +-
 .../repository/cluster}/etcd/props/EtcdPropertyKey.java |  2 +-
 ...fra.mode.repository.cluster.ClusterPersistRepository |  2 +-
 .../repository/cluster}/etcd/EtcdRepositoryTest.java    |  4 ++--
 .../cluster}/etcd/props/EtcdPropertiesTest.java         |  2 +-
 .../cluster}/zookeeper/CuratorZookeeperRepository.java  |  8 ++++----
 .../handler/CuratorZookeeperExceptionHandler.java       |  2 +-
 .../cluster}/zookeeper/props/ZookeeperProperties.java   |  2 +-
 .../cluster}/zookeeper/props/ZookeeperPropertyKey.java  |  2 +-
 ...fra.mode.repository.cluster.ClusterPersistRepository |  2 +-
 .../zookeeper/CuratorZookeeperRepositoryTest.java       |  4 ++--
 .../handler/CuratorZookeeperExceptionHandlerTest.java   |  2 +-
 .../zookeeper/props/ZookeeperPropertiesTest.java        |  2 +-
 .../type/GovernanceSpringBootRegistryEncryptTest.java   |  2 +-
 ...ernanceSpringBootRegistryReadwriteSplittingTest.java |  2 +-
 .../type/GovernanceSpringBootRegistryShardingTest.java  |  2 +-
 18 files changed, 41 insertions(+), 24 deletions(-)
 rename shardingsphere-infra/shardingsphere-infra-mode/shardingsphere-infra-mode-type/shardingsphere-infra-cluster-mode/shardingsphere-infra-cluster-mode-repository/shardingsphere-infra-cluster-mode-repository-provider/shardingsphere-infra-cluster-mode-repository-etcd/src/main/java/org/apache/shardingsphere/{governance/repository => infra/mode/repository/cluster}/etcd/EtcdRepository.java (96%)
 rename shardingsphere-infra/shardingsphere-infra-mode/shardingsphere-infra-mode-type/shardingsphere-infra-cluster-mode/shardingsphere-infra-cluster-mode-repository/shardingsphere-infra-cluster-mode-repository-provider/shardingsphere-infra-cluster-mode-repository-etcd/src/main/java/org/apache/shardingsphere/{governance/repository => infra/mode/repository/cluster}/etcd/props/EtcdProperties.java (93%)
 rename shardingsphere-infra/shardingsphere-infra-mode/shardingsphere-infra-mode-type/shardingsphere-infra-cluster-mode/shardingsphere-infra-cluster-mode-repository/shardingsphere-infra-cluster-mode-repository-provider/shardingsphere-infra-cluster-mode-repository-etcd/src/main/java/org/apache/shardingsphere/{governance/repository => infra/mode/repository/cluster}/etcd/props/EtcdPropertyKey.java (94%)
 rename shardingsphere-infra/shardingsphere-infra-mode/shardingsphere-infra-mode-type/shardingsphere-infra-cluster-mode/shardingsphere-infra-cluster-mode-repository/shardingsphere-infra-cluster-mode-repository-provider/shardingsphere-infra-cluster-mode-repository-etcd/src/test/java/org/apache/shardingsphere/{governance/repository => infra/mode/repository/cluster}/etcd/EtcdRepositoryTest.java (98%)
 rename shardingsphere-infra/shardingsphere-infra-mode/shardingsphere-infra-mode-type/shardingsphere-infra-cluster-mode/shardingsphere-infra-cluster-mode-repository/shardingsphere-infra-cluster-mode-repository-provider/shardingsphere-infra-cluster-mode-repository-etcd/src/test/java/org/apache/shardingsphere/{governance/repository => infra/mode/repository/cluster}/etcd/props/EtcdPropertiesTest.java (95%)
 rename shardingsphere-infra/shardingsphere-infra-mode/shardingsphere-infra-mode-type/shardingsphere-infra-cluster-mode/shardingsphere-infra-cluster-mode-repository/shardingsphere-infra-cluster-mode-repository-provider/shardingsphere-infra-cluster-mode-repository-zookeeper-curator/src/main/java/org/apache/shardingsphere/{governance/repository => infra/mode/repository/cluster}/zookeeper/CuratorZookeeperRepository.java (97%)
 rename shardingsphere-infra/shardingsphere-infra-mode/shardingsphere-infra-mode-type/shardingsphere-infra-cluster-mode/shardingsphere-infra-cluster-mode-repository/shardingsphere-infra-cluster-mode-repository-provider/shardingsphere-infra-cluster-mode-repository-zookeeper-curator/src/main/java/org/apache/shardingsphere/{governance/repository => infra/mode/repository/cluster}/zookeeper/handler/CuratorZookeeperExceptionHandler.java (96%)
 rename shardingsphere-infra/shardingsphere-infra-mode/shardingsphere-infra-mode-type/shardingsphere-infra-cluster-mode/shardingsphere-infra-cluster-mode-repository/shardingsphere-infra-cluster-mode-repository-provider/shardingsphere-infra-cluster-mode-repository-zookeeper-curator/src/main/java/org/apache/shardingsphere/{governance/repository => infra/mode/repository/cluster}/zookeeper/props/ZookeeperProperties.java (93%)
 rename shardingsphere-infra/shardingsphere-infra-mode/shardingsphere-infra-mode-type/shardingsphere-infra-cluster-mode/shardingsphere-infra-cluster-mode-repository/shardingsphere-infra-cluster-mode-repository-provider/shardingsphere-infra-cluster-mode-repository-zookeeper-curator/src/main/java/org/apache/shardingsphere/{governance/repository => infra/mode/repository/cluster}/zookeeper/props/ZookeeperPropertyKey.java (96%)
 rename shardingsphere-infra/shardingsphere-infra-mode/shardingsphere-infra-mode-type/shardingsphere-infra-cluster-mode/shardingsphere-infra-cluster-mode-repository/shardingsphere-infra-cluster-mode-repository-provider/shardingsphere-infra-cluster-mode-repository-zookeeper-curator/src/test/java/org/apache/shardingsphere/{governance/repository => infra/mode/repository/cluster}/zookeeper/CuratorZookeeperRepositoryTest.java (98%)
 rename shardingsphere-infra/shardingsphere-infra-mode/shardingsphere-infra-mode-type/shardingsphere-infra-cluster-mode/shardingsphere-infra-cluster-mode-repository/shardingsphere-infra-cluster-mode-repository-provider/shardingsphere-infra-cluster-mode-repository-zookeeper-curator/src/test/java/org/apache/shardingsphere/{governance/repository => infra/mode/repository/cluster}/zookeeper/handler/CuratorZookeeperExceptionHandlerTest.java (95%)
 rename shardingsphere-infra/shardingsphere-infra-mode/shardingsphere-infra-mode-type/shardingsphere-infra-cluster-mode/shardingsphere-infra-cluster-mode-repository/shardingsphere-infra-cluster-mode-repository-provider/shardingsphere-infra-cluster-mode-repository-zookeeper-curator/src/test/java/org/apache/shardingsphere/{governance/repository => infra/mode/repository/cluster}/zookeeper/props/ZookeeperPropertiesTest.java (97%)