|
@@ -661,12 +661,9 @@ public class FsStorePaymentServiceImpl implements IFsStorePaymentService {
|
|
if (lock.isHeldByCurrentThread()) {
|
|
if (lock.isHeldByCurrentThread()) {
|
|
lock.unlock();
|
|
lock.unlock();
|
|
}
|
|
}
|
|
- RedPacketLog finalRedPacketLog = redPacketLog;
|
|
|
|
- CompletableFuture.runAsync(()->{
|
|
|
|
- if(finalRedPacketLog != null) {
|
|
|
|
- redPacketLogMapper.insert(finalRedPacketLog);
|
|
|
|
- }
|
|
|
|
- });
|
|
|
|
|
|
+ if(redPacketLog != null) {
|
|
|
|
+ redPacketLogMapper.insert(redPacketLog);
|
|
|
|
+ }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|