|
|
@@ -86,7 +86,6 @@ public class CmsGptCarController {
|
|
|
if (StrUtil.isNotBlank(carId)) {
|
|
|
chatgptSessionMapper.deleteById(e.getId());
|
|
|
|
|
|
- String carConversationKey = RedisService.key.CHATGPT_CAR_CONVERSATION_LIMIT.getName() + ":" + carId;
|
|
|
String highCarChatKey = RedisService.key.CHATGPT_CAR_HIGH_CHAT.getName() + carId;
|
|
|
String lowCarChatKey = RedisService.key.CHATGPT_CAR_LOW_CHAT.getName() + carId;
|
|
|
//从zSet中删除车队
|
|
|
@@ -94,7 +93,6 @@ public class CmsGptCarController {
|
|
|
redisService.zRemove(carScoresKey, carId);
|
|
|
redisService.del(highCarChatKey);
|
|
|
redisService.del(lowCarChatKey);
|
|
|
- redisService.del(carConversationKey);
|
|
|
}
|
|
|
});
|
|
|
return GatewayResponse.SUCCESS.newBuilder().toResult();
|