Skip to content

Commit

Permalink
fix: limit fields to only required ones (open-metadata#13647)
Browse files Browse the repository at this point in the history
  • Loading branch information
TeddyCr authored Oct 19, 2023
1 parent c0108ca commit fc335f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ingestion/src/metadata/data_insight/source/metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def _iter(self, *_, **__) -> Iterable[Either[DataInsightRecord]]:
processor = cast(DataProcessor, processor)
processor.pre_hook() if processor.pre_hook else None # pylint: disable=expression-not-assigned

for data in producer.fetch_data():
for data in producer.fetch_data(fields=["owner", "tags"]):
processor.refine(data)

processor.post_hook() if processor.post_hook else None # pylint: disable=expression-not-assigned
Expand Down

0 comments on commit fc335f2

Please sign in to comment.