This is an automated email from the ASF dual-hosted git repository.
jianbin 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 2deed887d5 bugfix: correct server port and naming server port (#7879)
2deed887d5 is described below
commit 2deed887d5fa655a66cf42fe0b210849457e5999
Author: lokidundun <[email protected]>
AuthorDate: Fri Dec 19 20:49:55 2025 +0800
bugfix: correct server port and naming server port (#7879)
---
changes/en-us/2.x.md | 1 +
changes/zh-cn/2.x.md | 1 +
core/src/main/java/org/apache/seata/core/rpc/netty/ChannelManager.java | 2 +-
namingserver/pom.xml | 2 +-
server/pom.xml | 2 +-
5 files changed, 5 insertions(+), 3 deletions(-)
diff --git a/changes/en-us/2.x.md b/changes/en-us/2.x.md
index 410bc2c590..48638c11a4 100644
--- a/changes/en-us/2.x.md
+++ b/changes/en-us/2.x.md
@@ -63,6 +63,7 @@ Add changes here for all PR submitted to the 2.x branch.
- [[#7843](https://github.com/apache/incubator-seata/pull/7843)] fix index
type misjudgment in Dm/KingbaseTableMetaCache
- [[#7855](https://github.com/apache/incubator-seata/pull/7855)] fix comma
missing in package.json/min-document
- [[#7860](https://github.com/apache/incubator-seata/pull/7860)] Fix the issue
where delayed messages in RocketMQ transactions were silently ignored, now
explicitly throwing an exception
+- [[#7879](https://github.com/apache/incubator-seata/pull/7879)] fix:correct
server port and naming server port
### optimize:
diff --git a/changes/zh-cn/2.x.md b/changes/zh-cn/2.x.md
index 787d784524..7e89008a1c 100644
--- a/changes/zh-cn/2.x.md
+++ b/changes/zh-cn/2.x.md
@@ -63,6 +63,7 @@
- [[#7843](https://github.com/apache/incubator-seata/pull/7843)] 修复
Dm/KingbaseTableMetaCache 中的索引类型误判问题
- [[#7855](https://github.com/apache/incubator-seata/pull/7855)]
修复package.json中min-document的逗号缺失
- [[#7860](https://github.com/apache/incubator-seata/pull/7860)] 修复 RocketMQ
事务中延迟消息静默失效的问题,改为显式抛出异常
+- [[#7879](https://github.com/apache/incubator-seata/pull/7879)]
修正服务器端口与命名服务器端口
### optimize:
diff --git
a/core/src/main/java/org/apache/seata/core/rpc/netty/ChannelManager.java
b/core/src/main/java/org/apache/seata/core/rpc/netty/ChannelManager.java
index 3ab403f004..fbf23869e6 100644
--- a/core/src/main/java/org/apache/seata/core/rpc/netty/ChannelManager.java
+++ b/core/src/main/java/org/apache/seata/core/rpc/netty/ChannelManager.java
@@ -394,7 +394,7 @@ public class ChannelManager {
}
}
- // No channel on the this app node, try another one.
+ // No channel on the app node, try another one.
if (resultChannel == null) {
for (ConcurrentMap.Entry<String, ConcurrentMap<Integer,
RpcContext>> ipMapEntry : ipMap.entrySet()) {
if (ipMapEntry.getKey().equals(targetIP)) {
diff --git a/namingserver/pom.xml b/namingserver/pom.xml
index ae74b681f0..8cc3270d5e 100644
--- a/namingserver/pom.xml
+++ b/namingserver/pom.xml
@@ -229,7 +229,7 @@
<appRoot>/seata-naming-server</appRoot>
<workingDirectory>/seata-naming-server</workingDirectory>
<ports>
- <port>8080</port>
+ <port>8081</port>
</ports>
<labels>
<name>seata-naming-server</name>
diff --git a/server/pom.xml b/server/pom.xml
index 4f1a67d2ae..cbb58ab69f 100644
--- a/server/pom.xml
+++ b/server/pom.xml
@@ -393,7 +393,7 @@
<workingDirectory>/seata-server</workingDirectory>
<ports>
<port>8091</port>
- <port>7091</port>
+ <port>9091</port>
</ports>
<labels>
<name>seata-server</name>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]