chenbiao 2 년 전
부모
커밋
106bde4f1f
1개의 변경된 파일0개의 추가작업 그리고 2개의 파일을 삭제
  1. 0 2
      netflix-web/src/main/java/com/cyksj/web/controller/manage/account/CmsGptCarController.java

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

@@ -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();