From 1ec0fa3e374db7045048685bfce3f8b8837c8db0 Mon Sep 17 00:00:00 2001 From: Onkar Ravgan Date: Thu, 18 Aug 2022 23:17:56 +0530 Subject: [PATCH] Fixed PowerBi Exception (#6803) * Fixed exception for chart name * added id in exception Co-authored-by: Onkar Ravgan --- ingestion/src/metadata/ingestion/source/dashboard/powerbi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ingestion/src/metadata/ingestion/source/dashboard/powerbi.py b/ingestion/src/metadata/ingestion/source/dashboard/powerbi.py index 0ec59a66339..42bff2ca65a 100644 --- a/ingestion/src/metadata/ingestion/source/dashboard/powerbi.py +++ b/ingestion/src/metadata/ingestion/source/dashboard/powerbi.py @@ -188,4 +188,4 @@ class PowerbiSource(DashboardServiceSource): except Exception as err: # pylint: disable=broad-except logger.debug(traceback.format_exc()) logger.error(err) - self.status.failure(chart["title"], repr(err)) + self.status.failure(chart.get("id"), repr(err))