mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-09-16 20:40:38 +00:00
FIx Nonetype Bigquery Taxonomy (#8110)
This commit is contained in:
parent
997b977b03
commit
aa9ef323e2
@ -143,6 +143,8 @@ class BigquerySource(CommonDbSourceService):
|
|||||||
"""
|
"""
|
||||||
try:
|
try:
|
||||||
list_project_ids = [self.project_id]
|
list_project_ids = [self.project_id]
|
||||||
|
if not self.service_connection.taxonomyProjectID:
|
||||||
|
self.service_connection.taxonomyProjectID = []
|
||||||
list_project_ids.extend(self.service_connection.taxonomyProjectID)
|
list_project_ids.extend(self.service_connection.taxonomyProjectID)
|
||||||
for project_ids in list_project_ids:
|
for project_ids in list_project_ids:
|
||||||
taxonomies = PolicyTagManagerClient().list_taxonomies(
|
taxonomies = PolicyTagManagerClient().list_taxonomies(
|
||||||
|
@ -78,7 +78,6 @@
|
|||||||
"items": {
|
"items": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
"uniqueItems": true,
|
|
||||||
"default": null
|
"default": null
|
||||||
},
|
},
|
||||||
"taxonomyLocation": {
|
"taxonomyLocation": {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user