From 32c7b7424abde69e6d8dbc60378718857dee9e85 Mon Sep 17 00:00:00 2001 From: ulixius9 Date: Fri, 22 Nov 2024 15:24:07 +0530 Subject: [PATCH] MINOR: Fix StackTraceError validation error - Superset --- .../metadata/ingestion/source/dashboard/superset/db_source.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ingestion/src/metadata/ingestion/source/dashboard/superset/db_source.py b/ingestion/src/metadata/ingestion/source/dashboard/superset/db_source.py index 636641b61f8e..a9a2e9ef8454 100644 --- a/ingestion/src/metadata/ingestion/source/dashboard/superset/db_source.py +++ b/ingestion/src/metadata/ingestion/source/dashboard/superset/db_source.py @@ -201,7 +201,7 @@ def yield_dashboard_chart( except Exception as exc: yield Either( left=StackTraceError( - name=chart_json.id, + name=str(chart_json.id), error=f"Error yielding Chart [{chart_json.id} - {chart_json.slice_name}]: {exc}", stackTrace=traceback.format_exc(), )