From 7dfe61a542a1b1e714c1c42c6f957c7dcc94cf2d Mon Sep 17 00:00:00 2001 From: aseembansal-gogo <69132220+aseembansal-gogo@users.noreply.github.com> Date: Fri, 23 Jul 2021 03:56:47 +0530 Subject: [PATCH] fix(ingest): fix workunit name to be consistent with other sources (#2931) --- metadata-ingestion/src/datahub/ingestion/source/glue.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/metadata-ingestion/src/datahub/ingestion/source/glue.py b/metadata-ingestion/src/datahub/ingestion/source/glue.py index 02e950b6b6..5eb41648c9 100644 --- a/metadata-ingestion/src/datahub/ingestion/source/glue.py +++ b/metadata-ingestion/src/datahub/ingestion/source/glue.py @@ -403,7 +403,7 @@ class GlueSource(Source): continue mce = self._extract_record(table, full_table_name) - workunit = MetadataWorkUnit(id=f"glue-{full_table_name}", mce=mce) + workunit = MetadataWorkUnit(full_table_name, mce=mce) self.report.report_workunit(workunit) yield workunit