From e9b153fefecbe04b250a51dc77069b9ea092d128 Mon Sep 17 00:00:00 2001 From: Will Schroeder Date: Fri, 11 Jul 2025 15:15:23 -0700 Subject: [PATCH] Bug fix for overwriting completed enrichments Bug fix for overwriting completed enrichments --- projects/file_enrichment/file_enrichment/noseyparker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/file_enrichment/file_enrichment/noseyparker.py b/projects/file_enrichment/file_enrichment/noseyparker.py index 5bdf6ad..d4767f3 100644 --- a/projects/file_enrichment/file_enrichment/noseyparker.py +++ b/projects/file_enrichment/file_enrichment/noseyparker.py @@ -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),