mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-11-01 11:09:14 +00:00
Fix: Bigquery Table Tag not assigned (#13325)
This commit is contained in:
parent
dc5de12668
commit
3769a9d105
@ -375,10 +375,10 @@ class BigquerySource(StoredProcedureMixin, CommonDbSourceService):
|
||||
table_tag_labels = super().get_tag_labels(table_name) or []
|
||||
table_obj = self.get_table_obj(table_name=table_name)
|
||||
if table_obj.labels:
|
||||
for key, _ in table_obj.labels.items():
|
||||
for key, value in table_obj.labels.items():
|
||||
tag_label = get_tag_label(
|
||||
metadata=self.metadata,
|
||||
tag_name=key,
|
||||
tag_name=value,
|
||||
classification_name=key,
|
||||
)
|
||||
if tag_label:
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user