this is 3.24 update
This commit is contained in:
parent
9bcddcf515
commit
e009b105f8
|
@ -4,9 +4,9 @@ import java.util.List;
|
||||||
|
|
||||||
public interface MqConstant {
|
public interface MqConstant {
|
||||||
|
|
||||||
// List<Long> DELAY_MILLIS = List.of(10000L, 10000L, 10000L, 15000L, 15000L, 30000L, 30000L, 60000L, 60000L, 120000L, 300000L, 600000L, 600000L));
|
List<Long> DELAY_MILLIS = List.of(10000L, 10000L, 10000L, 15000L, 15000L, 30000L, 30000L, 60000L, 60000L, 120000L, 120000L, 120000L, 300000L);
|
||||||
|
|
||||||
List<Long> DELAY_MILLIS = List.of(10000L, 10000L, 10000L, 15000L, 15000L);
|
// List<Long> DELAY_MILLIS = List.of(10000L, 10000L, 10000L, 15000L, 15000L);
|
||||||
|
|
||||||
String DELAY_EXCHANGE = "delay.topic";
|
String DELAY_EXCHANGE = "delay.topic";
|
||||||
|
|
||||||
|
|
|
@ -242,6 +242,8 @@ public class GoodServiceImpl extends ServiceImpl<GoodMapper, Good> implements Go
|
||||||
BookingOrderQueryRequest bookingOrderQueryRequest = new BookingOrderQueryRequest(goodId, reservationDate, timeSlot);
|
BookingOrderQueryRequest bookingOrderQueryRequest = new BookingOrderQueryRequest(goodId, reservationDate, timeSlot);
|
||||||
PendingServiceGood pendingServiceGood = pendingServiceGoodMap.get(bookingOrderQueryRequest.toString());
|
PendingServiceGood pendingServiceGood = pendingServiceGoodMap.get(bookingOrderQueryRequest.toString());
|
||||||
|
|
||||||
|
if (pendingServiceGood == null) return false;
|
||||||
|
|
||||||
Integer isAvailable = pendingServiceGood.getIsAvailable();
|
Integer isAvailable = pendingServiceGood.getIsAvailable();
|
||||||
if (isAvailable == 0) return false;
|
if (isAvailable == 0) return false;
|
||||||
|
|
||||||
|
|
|
@ -75,12 +75,12 @@ springdoc:
|
||||||
|
|
||||||
|
|
||||||
server:
|
server:
|
||||||
# port: 9092
|
port: 9092
|
||||||
port: 8888
|
# port: 8888
|
||||||
ssl:
|
# ssl:
|
||||||
key-store: classpath:carboner.cn.jks
|
# key-store: classpath:carboner.cn.jks
|
||||||
key-store-password: 6gsn1hke4m4f7
|
# key-store-password: 6gsn1hke4m4f7
|
||||||
key-store-type: JKS
|
# key-store-type: JKS
|
||||||
|
|
||||||
servlet:
|
servlet:
|
||||||
context-path: /api
|
context-path: /api
|
||||||
|
|
Loading…
Reference in New Issue
Block a user