From 73abe96aae397b50550e8e4ddcc18c9035c86a18 Mon Sep 17 00:00:00 2001 From: Katy Baulch <46493669+katybaulch@users.noreply.github.com> Date: Thu, 17 Oct 2024 12:49:08 +0100 Subject: [PATCH] Update comment --- app/core/ingestion/pipeline.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/core/ingestion/pipeline.py b/app/core/ingestion/pipeline.py index a8d9db8b..78c935cd 100644 --- a/app/core/ingestion/pipeline.py +++ b/app/core/ingestion/pipeline.py @@ -114,7 +114,8 @@ def generate_pipeline_ingest_input_query( ) .filter(FamilyDocument.document_status != DocumentStatus.DELETED) .options( - # Disable any default eager loading + # Disable any default eager loading as this was causing multiplicity due to + # implicit joins due to relationships between the selected models. lazyload("*") ) )