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

jianbin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-seata-samples.git


The following commit(s) were added to refs/heads/master by this push:
     new 3ae0a30e feature: fix txServiceGroup of at-api (#682)
3ae0a30e is described below

commit 3ae0a30e94ccb76eabf8ffc15863dbfa29bda598
Author: Jingliu Xiong <928124...@qq.com>
AuthorDate: Thu May 23 23:19:12 2024 +0800

    feature: fix txServiceGroup of at-api (#682)
---
 .../at-api/src/main/java/org/apache/seata/api/BusinessService.java      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/at-sample/at-api/src/main/java/org/apache/seata/api/BusinessService.java 
b/at-sample/at-api/src/main/java/org/apache/seata/api/BusinessService.java
index e1e7cb56..839092ba 100644
--- a/at-sample/at-api/src/main/java/org/apache/seata/api/BusinessService.java
+++ b/at-sample/at-api/src/main/java/org/apache/seata/api/BusinessService.java
@@ -66,7 +66,7 @@ public class BusinessService {
                 try {
                     reconnect = o.getClass().getDeclaredMethod("reconnect", 
String.class);
                     reconnect.setAccessible(true);
-                    reconnect.invoke(o, "default_tx_group");
+                    reconnect.invoke(o, "my_test_tx_group");
                 } catch (Exception e) {
                     throw new RuntimeException("reconnect failed!", e);
                 }


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscr...@seata.apache.org
For additional commands, e-mail: notifications-h...@seata.apache.org

Reply via email to