chenbiao 2 lat temu
rodzic
commit
81d3aaaa0c

+ 0 - 3
netflix-web/src/main/java/com/cyksj/web/controller/manage/account/CmsGptCarController.java

@@ -85,8 +85,6 @@ public class CmsGptCarController {
 					String carId = e.getCarId();
 					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 +92,6 @@ public class CmsGptCarController {
 						redisService.zRemove(carScoresKey, carId);
 						redisService.del(highCarChatKey);
 						redisService.del(lowCarChatKey);
-						redisService.del(carConversationKey);
 					}
 				});
 		return GatewayResponse.SUCCESS.newBuilder().toResult();