Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changes/en-us/2.x.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ Add changes here for all PR submitted to the 2.x branch.
- [[#7107](https://github.com/apache/incubator-seata/pull/7107)] fix the issue of failing to parse annotations in TCC mode when the business object is a proxy object.
- [[#7124](https://github.com/apache/incubator-seata/pull/7124)] bugfix: GlobalTransactionScanner.afterPropertiesSet need do scanner check
- [[#7135](https://github.com/apache/incubator-seata/pull/7135)] treating a unique index conflict during rollback as a dirty write
- [[#7150](https://github.com/apache/incubator-seata/pull/7150)] The time difference between the raft node and the follower node cannot synchronize data

### optimize:

Expand Down
1 change: 1 addition & 0 deletions changes/zh-cn/2.x.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
- [[#7107](https://github.com/apache/incubator-seata/pull/7107)] 修复tcc模式下,当业务对象为代理对象时,解析注解失败问题。
- [[#7124](https://github.com/apache/incubator-seata/pull/7124)] GlobalTransactionScanner.afterPropertiesSet方法需要做扫描检查
- [[#7135](https://github.com/apache/incubator-seata/pull/7135)] 回滚时遇到唯一索引冲突视为脏写
- [[#7150](https://github.com/apache/incubator-seata/pull/7150)] raft节点之前时间差,follower节点无法同步数据

### optimize:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -390,8 +390,11 @@ private void syncCurrentNodeInfo(String group) {
PeerId peerId = RouteTable.getInstance().selectLeader(group);
if (peerId != null) {
syncCurrentNodeInfo(peerId);
} else {
initSync.compareAndSet(true, false);
}
} catch (Exception e) {
initSync.compareAndSet(true, false);
LOGGER.error(e.getMessage(), e);
}
}
Expand Down Expand Up @@ -439,8 +442,11 @@ private void syncCurrentNodeInfo(PeerId leaderPeerId) {
err);
}
}, 30000);
} else {
initSync.compareAndSet(true, false);
}
} catch (Exception e) {
initSync.compareAndSet(true, false);
LOGGER.error(e.getMessage(), e);
}
}
Expand Down
Loading