This commit is contained in:
2026-01-31 20:24:15 -08:00
parent 1dbaabac73
commit bc3dbf28e8
5 changed files with 35 additions and 19 deletions

View File

@@ -1353,7 +1353,8 @@ class PipelineExecutor:
def _add(value) -> None:
try:
text = str(value or "").strip().lower()
except Exception:
except Exception as exc:
logger.debug("Failed to normalize candidate value: %s", exc, exc_info=True)
return
if not text or text in seen:
return