Skip to content

Commit

Permalink
MINOR: Fix StackTraceError validation error - Superset
Browse files Browse the repository at this point in the history
  • Loading branch information
ulixius9 committed Nov 22, 2024
1 parent 7651a63 commit 32c7b74
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
)
Expand Down

0 comments on commit 32c7b74

Please sign in to comment.