Skip to content

Commit

Permalink
feature: fix txServiceGroup of at-api (#682)
Browse files Browse the repository at this point in the history
  • Loading branch information
xjlgod committed May 23, 2024
1 parent 2b43ee3 commit 3ae0a30
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public static void main(String[] args) throws SQLException, TransactionException
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);
}
Expand Down

0 comments on commit 3ae0a30

Please sign in to comment.