JustFreedom

Results 1 issues of JustFreedom

io.seata.server.coordinator.DefaultCore#doGlobalRollback中的 globalSession.getSortedBranches()需要修复成globalSession.getReverseSortedBranches();([这个已经在2.x中修复](https://github.com/apache/incubator-seata/issues/6120)) 我计划自己修复后,自己重新打镜像。 由于2.0.0中没有修复这个bug,我自己2.0.0的源码,修改这样代码。[使用教程中的命令](https://github.com/apache/incubator-seata/blob/v2.0.0/distribution/Dockerfile)打包,打出来的镜像与从镜像仓库拉下来的差别较大。 ``` 打包命令 1. mvn -Prelease-seata -Dmaven.test.skip=true clean install -U 2. cd distribution/target/seata-server-2.0.0/seata/ 3. docker build --no-cache --build-arg SEATA_VERSION=2.0.0 -t seata-server:2.0.0 . ``` 问题: 1、是我使用的打包的命令不对么? 2、有其他办法在2.0.0中fix这个bug么? 下面是镜像内的内容...

status: waiting-for-feedback