dpgaspar commented on code in PR #35591:
URL: https://github.com/apache/superset/pull/35591#discussion_r2445277060
##########
superset/commands/report/exceptions.py:
##########
@@ -255,17 +255,29 @@ class AlertQueryTimeout(CommandException):
class ReportScheduleScreenshotTimeout(CommandException):
status = 408
- message = _("A timeout occurred while taking a screenshot.")
+
+ def __init__(
+ self, message: str = _("A timeout occurred while taking a screenshot.")
+ ) -> None:
+ super().__init__(message)
Review Comment:
Why this change? weren't the message bubbling up to the user's because this?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]