Skip to content

Commit

Permalink
bugfix: fix branchType server decode error (#7127)
Browse files Browse the repository at this point in the history
  • Loading branch information
wt-better authored Jan 21, 2025
1 parent d3e2b76 commit 15b4273
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
1 change: 1 addition & 0 deletions changes/en-us/2.3.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ The version is updated as follows:
- [[#7025](https://github.com/apache/incubator-seata/pull/7025)] fix vGroupMappingManager is NOT init
- [[#7044](https://github.com/apache/incubator-seata/pull/7044)] fix tableMeta refresh after closed
- [[#7117](https://github.com/apache/incubator-seata/pull/7117)] fix prefix: seata.server.raft.ssl should not be null
- [[#7127](https://github.com/apache/incubator-seata/pull/7127)] fix branchType server decode error


### optimize:
Expand Down
1 change: 1 addition & 0 deletions changes/zh-cn/2.3.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ Apache Seata(incubating) 是一款开源的分布式事务解决方案,提供
- [[#7025](https://github.com/apache/incubator-seata/pull/7025)] 修复vGroupMappingManager未初始化的问题
- [[#7044](https://github.com/apache/incubator-seata/pull/7044)] 修复TableMeta在数据源关闭后刷新错误问题
- [[#7117](https://github.com/apache/incubator-seata/pull/7117)] 修复 seata.server.raft.ssl 前缀不存在的问题
- [[#7127](https://github.com/apache/incubator-seata/pull/7127)] 修复saga注解化导致的server branchType解码失败问题


### optimize:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,14 @@ public enum BranchType {
SAGA,

/**
* The SAGA_ANNOTATION.
* The XA.
*/
SAGA_ANNOTATION,
XA,

/**
* The XA.
* The SAGA_ANNOTATION.
*/
XA;
SAGA_ANNOTATION;

/**
* Get branch type.
Expand Down

0 comments on commit 15b4273

Please sign in to comment.