BUGFIX:1、积分消耗值不准确 2、flux获取结果报错

This commit is contained in:
2025-06-23 18:16:23 +08:00
parent 3d08e86049
commit 8e31968fd3
6 changed files with 38 additions and 16 deletions

View File

@@ -29,6 +29,8 @@ public class RedisUtil {
@Resource
private RedisTemplate<String, String> redisTemplate;
public final static String FLUX_POLLING_URL = "Flux:";
public Boolean hasKey(String key){
return redisTemplate.hasKey(key);
}

View File

@@ -104,7 +104,7 @@ public class SendRequestUtil {
return body;
}
}
log.warn("请求失败,状态码为 {}, body: {}", status, body);
log.warn("请求失败,状态码为 {}", status);
return null;
}