@@ -131,7 +131,7 @@ public Object prepareFence(String xid, Long branchId, String actionName, Callbac
131
131
status .setRollbackOnly ();
132
132
throw new SkipCallbackWrapperException (t );
133
133
} finally {
134
- executeWithHandling (() -> afterPrepareFence (xid , branchId , actionName ), xid , branchId ,"afterPrepareFence" );
134
+ executeWithHandling (() -> afterPrepareFence (xid , branchId , actionName ), xid , branchId , "afterPrepareFence" );
135
135
}
136
136
});
137
137
}
@@ -194,7 +194,7 @@ public boolean commitFence(Method commitMethod, Object targetTCCBean,
194
194
@ Override
195
195
public boolean rollbackFence (Method rollbackMethod , Object targetTCCBean ,
196
196
String xid , Long branchId , Object [] args , String actionName ) {
197
- executeWithHandling (() -> beforeRollbackFence (xid , branchId , actionName ), xid , branchId ,"beforeRollbackFence" );
197
+ executeWithHandling (() -> beforeRollbackFence (xid , branchId , actionName ), xid , branchId , "beforeRollbackFence" );
198
198
return transactionTemplate .execute (status -> {
199
199
try {
200
200
Connection conn = DataSourceUtils .getConnection (dataSource );
0 commit comments