fix(ingest): fix workunit name to be consistent with other sources (#2931)

This commit is contained in:
aseembansal-gogo 2021-07-23 03:56:47 +05:30 committed by GitHub
parent 757abfc6f6
commit 7dfe61a542
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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