diff --git a/src/azul/plugins/metadata/hca/indexer/aggregate.py b/src/azul/plugins/metadata/hca/indexer/aggregate.py index 999e18038..74d737643 100644 --- a/src/azul/plugins/metadata/hca/indexer/aggregate.py +++ b/src/azul/plugins/metadata/hca/indexer/aggregate.py @@ -166,6 +166,9 @@ def _accumulator(self, field) -> Accumulator | None: # be omitted during the verbatim handover. Donors are a "hot" entity # type, and we can't track their hubs in replica documents, so we # rely on the inner entity IDs instead. + # + # FIXME: Enforce that hot entity types are completely aggregated + # https://github.com/DataBiosphere/azul/issues/6793 return SetAccumulator(max_size=100) else: return super()._accumulator(field) @@ -207,6 +210,9 @@ def _accumulator(self, field) -> Accumulator | None: # protocols may be omitted during the verbatim handover. Some # protocols are "hot" entity types, and we can't track their hubs in # replicas, so we rely on the inner entity IDs instead. + # + # FIXME: Enforce that hot entity types are completely aggregated + # https://github.com/DataBiosphere/azul/issues/6793 return SetAccumulator(max_size=100) else: return super()._accumulator(field)