Bug fix for overwriting completed enrichments

Bug fix for overwriting completed enrichments
This commit is contained in:
Will Schroeder
2025-07-11 15:15:23 -07:00
committed by GitHub
parent f4ef50f28c
commit e9b153fefe
@@ -124,7 +124,7 @@ async def store_noseyparker_results(
cur.execute(
"""
UPDATE workflows
SET enrichments_success = array_append(enrichments_failure, %s)
SET enrichments_success = array_append(enrichments_success, %s)
WHERE object_id = %s
""",
("noseyparker", object_id),