Skip to content

Commit 5f8f55a

Browse files
authored
Merge pull request #64 from codingapi/4.1.0
InheritableThreadLocal
2 parents 7f22dd1 + bd3df72 commit 5f8f55a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tx-client/src/main/java/com/codingapi/tx/aop/bean/TxCompensateLocal.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
*/
77
public class TxCompensateLocal {
88

9-
private final static ThreadLocal<TxCompensateLocal> currentLocal = new ThreadLocal<TxCompensateLocal>();
9+
private final static ThreadLocal<TxCompensateLocal> currentLocal = new InheritableThreadLocal<TxCompensateLocal>();
1010

1111
private String groupId;
1212

tx-client/src/main/java/com/codingapi/tx/aop/bean/TxTransactionLocal.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public class TxTransactionLocal {
1818

1919
private Logger logger = LoggerFactory.getLogger(TxTransactionLocal.class);
2020

21-
private final static ThreadLocal<TxTransactionLocal> currentLocal = new ThreadLocal<TxTransactionLocal>();
21+
private final static ThreadLocal<TxTransactionLocal> currentLocal = new InheritableThreadLocal<TxTransactionLocal>();
2222

2323
private String groupId;
2424

0 commit comments

Comments
 (0)