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

jimin pushed a commit to branch 2.x
in repository https://gitbox.apache.org/repos/asf/incubator-seata.git


The following commit(s) were added to refs/heads/2.x by this push:
     new e096c7430f optimize: remove extra dots and keep the naming style 
consistent with other tables (#7502)
e096c7430f is described below

commit e096c7430fe062cfb244898dadfad6572163bd80
Author: diguage <[email protected]>
AuthorDate: Wed Jul 9 11:01:37 2025 +0800

    optimize: remove extra dots and keep the naming style consistent with other 
tables (#7502)
---
 changes/en-us/2.x.md                                                | 2 ++
 changes/zh-cn/2.x.md                                                | 2 ++
 common/src/main/java/org/apache/seata/common/ConfigurationKeys.java | 2 +-
 script/config-center/config.txt                                     | 2 +-
 4 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/changes/en-us/2.x.md b/changes/en-us/2.x.md
index 10adc5b5e8..4560404794 100644
--- a/changes/en-us/2.x.md
+++ b/changes/en-us/2.x.md
@@ -31,6 +31,7 @@ Add changes here for all PR submitted to the 2.x branch.
 - [[#7356](https://github.com/apache/incubator-seata/pull/7356)] fix codecov 
bug
 - [[#7370](https://github.com/apache/incubator-seata/pull/7370)] fix 
ISSUE_TEMPLATE not work
 - [[#7397](https://github.com/apache/incubator-seata/pull/7397)] Resolve 
NullPointer and port binding errors
+- [[#7502](https://github.com/apache/incubator-seata/pull/7502)] remove extra 
dots and keep the naming style consistent with other tables
 - [[#7498](https://github.com/apache/incubator-seata/pull/7498)] fix the class 
name whitelist check issue in fury deserialization
 
 
@@ -140,6 +141,7 @@ Thanks to these contributors for their code commits. Please 
report an unintended
 - [jsbxyyx](https://github.com/jsbxyyx)
 - [simzyoo](https://github.com/simzyoo)
 - [Dltmd202](https://github.com/Dltmd202)
+- [diguage](https://github.com/diguage)
 - [GoodBoyCoder](https://github.com/GoodBoyCoder)
 
 
diff --git a/changes/zh-cn/2.x.md b/changes/zh-cn/2.x.md
index a3b362d45c..acfe339817 100644
--- a/changes/zh-cn/2.x.md
+++ b/changes/zh-cn/2.x.md
@@ -30,6 +30,7 @@
 - [[#7356](https://github.com/apache/incubator-seata/pull/7356)] 修复 codecov 错误
 - [[#7370](https://github.com/apache/incubator-seata/pull/7370)] 修复 
ISSUE_TEMPLATE 不可用
 - [[#7397](https://github.com/apache/incubator-seata/pull/7397)] 解决空指针和端口绑定错误
+- [[#7502](https://github.com/apache/incubator-seata/pull/7502)] 
删除多余点号和保持命名规范统一
 - [[#7498](https://github.com/apache/incubator-seata/pull/7498)] 
修复fury反序列化的类名白名单检查问题
 
 
@@ -140,6 +141,7 @@
 - [YvCeung](https://github.com/YvCeung)
 - [jsbxyyx](https://github.com/jsbxyyx)
 - [simzyoo](https://github.com/simzyoo)
+- [diguage](https://github.com/diguage)
 - [GoodBoyCoder](https://github.com/GoodBoyCoder)
 
 
diff --git 
a/common/src/main/java/org/apache/seata/common/ConfigurationKeys.java 
b/common/src/main/java/org/apache/seata/common/ConfigurationKeys.java
index 8f4451a290..67498b0fd6 100644
--- a/common/src/main/java/org/apache/seata/common/ConfigurationKeys.java
+++ b/common/src/main/java/org/apache/seata/common/ConfigurationKeys.java
@@ -1215,7 +1215,7 @@ public interface ConfigurationKeys {
     /**
      * The constant VGROUP_TABLE_NAME
      */
-    String VGROUP_TABLE_NAME = STORE_DB_PREFIX + FILE_CONFIG_SPLIT_CHAR + 
"vgroup-table";
+    String VGROUP_TABLE_NAME = STORE_DB_PREFIX + "vgroupTable";
 
     /**
      * The constant NAMESPACE_KEY
diff --git a/script/config-center/config.txt b/script/config-center/config.txt
index b1118fd4ad..dc140e6fdb 100644
--- a/script/config-center/config.txt
+++ b/script/config-center/config.txt
@@ -133,7 +133,7 @@ store.db.maxConn=30
 store.db.globalTable=global_table
 store.db.branchTable=branch_table
 store.db.distributedLockTable=distributed_lock
-store.db.vgroupTable=vgroup-table
+store.db.vgroupTable=vgroup_table
 store.db.queryLimit=100
 store.db.lockTable=lock_table
 store.db.maxWait=5000


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to