You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by ra...@apache.org on 2021/07/12 03:53:52 UTC

[dubbo-admin] branch develop updated: remove default config value (#781)

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

ranke pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/dubbo-admin.git


The following commit(s) were added to refs/heads/develop by this push:
     new 8a67392  remove default config value (#781)
8a67392 is described below

commit 8a6739268c6d4b1ef91e9eb397ef2f0c87735ee6
Author: haoyann <10...@qq.com>
AuthorDate: Mon Jul 12 11:53:45 2021 +0800

    remove default config value (#781)
---
 .../java/org/apache/dubbo/admin/config/ConfigCenter.java     | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/dubbo-admin-server/src/main/java/org/apache/dubbo/admin/config/ConfigCenter.java b/dubbo-admin-server/src/main/java/org/apache/dubbo/admin/config/ConfigCenter.java
index 43a2dc1..bedd84d 100644
--- a/dubbo-admin-server/src/main/java/org/apache/dubbo/admin/config/ConfigCenter.java
+++ b/dubbo-admin-server/src/main/java/org/apache/dubbo/admin/config/ConfigCenter.java
@@ -56,22 +56,22 @@ public class ConfigCenter {
     @Value("${admin.metadata-report.cluster:false}")
     private boolean cluster;
 
-    @Value("${admin.registry.group:dubbo}")
+    @Value("${admin.registry.group:}")
     private String registryGroup;
 
-    @Value("${admin.config-center.group:dubbo}")
+    @Value("${admin.config-center.group:}")
     private String configCenterGroup;
 
-    @Value("${admin.metadata-report.group:dubbo}")
+    @Value("${admin.metadata-report.group:}")
     private String metadataGroup;
 
-    @Value("${admin.registry.namespace:dubbo}")
+    @Value("${admin.registry.namespace:}")
     private String registryNameSpace;
 
-    @Value("${admin.config-center.namespace:dubbo}")
+    @Value("${admin.config-center.namespace:}")
     private String configCenterGroupNameSpace;
 
-    @Value("${admin.metadata-report.namespace:dubbo}")
+    @Value("${admin.metadata-report.namespace:}")
     private String metadataGroupNameSpace;
 
     @Value("${admin.config-center.username:}")