From 44ed8f094d241357b63d66788a48c1d0a9ee0745 Mon Sep 17 00:00:00 2001 From: Onkar Ravgan Date: Sun, 17 Jul 2022 21:56:04 +0530 Subject: [PATCH] Replaced with underscore (#6123) Co-authored-by: Onkar Ravgan --- ingestion/src/metadata/ingestion/source/dashboard/looker.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ingestion/src/metadata/ingestion/source/dashboard/looker.py b/ingestion/src/metadata/ingestion/source/dashboard/looker.py index aa24a6ac615..df7d7ac3598 100644 --- a/ingestion/src/metadata/ingestion/source/dashboard/looker.py +++ b/ingestion/src/metadata/ingestion/source/dashboard/looker.py @@ -111,7 +111,7 @@ class LookerSource(DashboardServiceSource): """ yield CreateDashboardRequest( - name=dashboard_details.id, + name=dashboard_details.id.replace("::", "_"), displayName=dashboard_details.title, description=dashboard_details.description or "", charts=[ @@ -197,7 +197,7 @@ class LookerSource(DashboardServiceSource): self.metadata, entity_type=LineageDashboard, service_name=self.config.serviceName, - dashboard_name=dashboard_details.id, + dashboard_name=dashboard_details.id.replace("::", "_"), ) to_entity = self.metadata.get_by_name( entity=LineageDashboard,