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

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


The following commit(s) were added to refs/heads/master by this push:
     new 51f1950b64a Refactor example (#28865)
51f1950b64a is described below

commit 51f1950b64a16d70c8b2f48daa3f3f7be5e500b0
Author: zhaojinchao <[email protected]>
AuthorDate: Wed Oct 25 21:02:19 2023 -0500

    Refactor example (#28865)
---
 .../YamlExampleConfigurationSupportedValue.java    |  4 +--
 .../resources/yaml/feature/db-discovery.ftl        | 34 ----------------------
 2 files changed, 2 insertions(+), 36 deletions(-)

diff --git 
a/examples/shardingsphere-jdbc-example-generator/src/main/java/org/apache/shardingsphere/example/generator/core/yaml/config/YamlExampleConfigurationSupportedValue.java
 
b/examples/shardingsphere-jdbc-example-generator/src/main/java/org/apache/shardingsphere/example/generator/core/yaml/config/YamlExampleConfigurationSupportedValue.java
index 5194d851df7..3ecc90fa97b 100644
--- 
a/examples/shardingsphere-jdbc-example-generator/src/main/java/org/apache/shardingsphere/example/generator/core/yaml/config/YamlExampleConfigurationSupportedValue.java
+++ 
b/examples/shardingsphere-jdbc-example-generator/src/main/java/org/apache/shardingsphere/example/generator/core/yaml/config/YamlExampleConfigurationSupportedValue.java
@@ -31,11 +31,11 @@ import java.util.Set;
 @Getter
 public enum YamlExampleConfigurationSupportedValue {
     
-    MODES("modes", new HashSet<>(Arrays.asList("memory", "proxy", 
"cluster-zookeeper", "cluster-etcd", "standalone"))),
+    MODES("modes", new HashSet<>(Arrays.asList("proxy", "cluster-zookeeper", 
"cluster-etcd", "standalone"))),
     
     TRANSACTIONS("transactions", new HashSet<>(Arrays.asList("local", 
"xa-atomikos", "xa-narayana", "base-seata"))),
     
-    FEATURES("features", new HashSet<>(Arrays.asList("shadow", "sharding", 
"readwrite-splitting", "encrypt", "db-discovery", "mask"))),
+    FEATURES("features", new HashSet<>(Arrays.asList("shadow", "sharding", 
"readwrite-splitting", "encrypt", "mask"))),
     
     FRAMEWORKS("frameworks", new HashSet<>(Arrays.asList("jdbc", 
"spring-boot-starter-jdbc", "spring-boot-starter-jpa", 
"spring-boot-starter-mybatis", "spring-namespace-jdbc", "spring-namespace-jpa", 
"spring-namespace-mybatis")));
     
diff --git 
a/examples/shardingsphere-jdbc-example-generator/src/main/resources/template/resources/yaml/feature/db-discovery.ftl
 
b/examples/shardingsphere-jdbc-example-generator/src/main/resources/template/resources/yaml/feature/db-discovery.ftl
deleted file mode 100644
index d653faaec61..00000000000
--- 
a/examples/shardingsphere-jdbc-example-generator/src/main/resources/template/resources/yaml/feature/db-discovery.ftl
+++ /dev/null
@@ -1,34 +0,0 @@
-<#--
-  ~ Licensed to the Apache Software Foundation (ASF) under one or more
-  ~ contributor license agreements.  See the NOTICE file distributed with
-  ~ this work for additional information regarding copyright ownership.
-  ~ The ASF licenses this file to You under the Apache License, Version 2.0
-  ~ (the "License"); you may not use this file except in compliance with
-  ~ the License.  You may obtain a copy of the License at
-  ~
-  ~     http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing, software
-  ~ distributed under the License is distributed on an "AS IS" BASIS,
-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  ~ See the License for the specific language governing permissions and
-  ~ limitations under the License.
-  -->
-- !DB_DISCOVERY
-  dataSources:
-    group_0:
-      dataSourceNames:
-        - ds_0
-        - ds_1
-        - ds_2
-      discoveryHeartbeatName: mgr_heartbeat
-      discoveryTypeName: mgr_type
-    discoveryHeartbeats:
-      mgr_heartbeat:
-        props:
-          keep-alive-cron: '0/5 * * * * ?'
-    discoveryTypes:
-      mgr_type:
-        type: MySQL.MGR
-        props:
-          group-name: aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa

Reply via email to