fix:修复阈值,降低表达

This commit is contained in:
SengokuCola
2025-06-08 23:58:11 +08:00
parent ec1a7c2ba9
commit 79405d1871
3 changed files with 5 additions and 3 deletions

View File

@@ -222,7 +222,7 @@ class RelationshipProcessor(BaseProcessor):
"start_time": time.time(),
"forget": False,
})
if len(self.info_fetching_cache) > 30:
if len(self.info_fetching_cache) > 20:
self.info_fetching_cache.pop(0)
else:
logger.warning(f"{self.log_prefix} 未找到用户 {person_name} 的ID跳过调取信息。")