You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by po...@apache.org on 2022/04/05 07:44:39 UTC

[airflow] branch main updated: log backfill exceptions to sentry (#22704)

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

potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new 295229f426 log backfill exceptions to sentry (#22704)
295229f426 is described below

commit 295229f426d3fc7730d9fce09d768614fe1fb6a5
Author: QP Hou <qp...@scribd.com>
AuthorDate: Tue Apr 5 00:44:28 2022 -0700

    log backfill exceptions to sentry (#22704)
---
 airflow/sentry.py | 1 -
 1 file changed, 1 deletion(-)

diff --git a/airflow/sentry.py b/airflow/sentry.py
index 948ecb8629..9fcd9f892b 100644
--- a/airflow/sentry.py
+++ b/airflow/sentry.py
@@ -79,7 +79,6 @@ if conf.getboolean("sentry", 'sentry_on', fallback=False):
         def __init__(self):
             """Initialize the Sentry SDK."""
             ignore_logger("airflow.task")
-            ignore_logger("airflow.jobs.backfill_job.BackfillJob")
             executor_name = conf.get("core", "EXECUTOR")
 
             sentry_flask = FlaskIntegration()