john1337 commented on issue #37128:
URL: 
https://github.com/apache/shardingsphere/issues/37128#issuecomment-3546062121

   that's the source code from shardingsphere-transaction-base-seata-at module 
SeataATShardingSphereTransactionManager class,relative code are as 
follows,apparently seata's code are invoked by shardingsphere
   public void commit(boolean rollbackOnly) {
           try {
               this.checkSeataATEnabled();
   
               try {
                   SeataTransactionHolder.get().commit();
               } finally {
                   SeataTransactionHolder.clear();
                   RootContext.unbind();
                   SeataXIDContext.remove();
               }
   
           } catch (TransactionException $ex) {
               throw $ex;
           }
       }


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to