You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by pk...@apache.org on 2022/10/03 20:24:45 UTC

[superset] branch master updated: fix: add logging to alerts and reports to find non-triggering issues (#21684)

This is an automated email from the ASF dual-hosted git repository.

pkdotson pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git


The following commit(s) were added to refs/heads/master by this push:
     new 84c3cf66ea fix: add logging to alerts and reports to find non-triggering issues (#21684)
84c3cf66ea is described below

commit 84c3cf66ea0858f7dd7ae1a1fca7260cec076bf6
Author: Phillip Kelley-Dotson <pk...@yahoo.com>
AuthorDate: Mon Oct 3 13:24:32 2022 -0700

    fix: add logging to alerts and reports to find non-triggering issues (#21684)
---
 superset/reports/commands/execute.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/superset/reports/commands/execute.py b/superset/reports/commands/execute.py
index 90c5040cc1..1fbdba1c25 100644
--- a/superset/reports/commands/execute.py
+++ b/superset/reports/commands/execute.py
@@ -436,6 +436,7 @@ class BaseReportState:
         """
         header_data = self._get_log_data()
         header_data["error_text"] = message
+        logger.info("header_data info %s", header_data)
         notification_content = NotificationContent(
             name=name, text=message, header_data=header_data
         )