From df842ef262f5eef2ee55fbff7918f02664a0078d Mon Sep 17 00:00:00 2001 From: Harshal Sheth Date: Thu, 17 Oct 2024 16:32:36 -0700 Subject: [PATCH] update comment --- .../src/datahub/ingestion/source/looker/looker_source.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/metadata-ingestion/src/datahub/ingestion/source/looker/looker_source.py b/metadata-ingestion/src/datahub/ingestion/source/looker/looker_source.py index 21a4b47e39a261..e42ac7b61c1777 100644 --- a/metadata-ingestion/src/datahub/ingestion/source/looker/looker_source.py +++ b/metadata-ingestion/src/datahub/ingestion/source/looker/looker_source.py @@ -866,6 +866,10 @@ def _make_explore_metadata_events( if not self.source_config.emit_used_explores_only: explores_to_fetch = list(self.list_all_explores()) else: + # We don't keep track of project names for each explore right now. + # Because project names are just used for a custom property, it's + # fine to set them to None. + # TODO: Track project names for each explore. explores_to_fetch = [ (None, model, explore) for (model, explore) in self.reachable_explores.keys()