Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
from sqlalchemy import select, update
from sqlalchemy.orm import Session

from airflow import AirflowException
from airflow.exceptions import AirflowException

try:
from airflow.cli.cli_config import (
Expand Down
2 changes: 1 addition & 1 deletion airflow/sentry.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def __init__(self):
# LoggingIntegration is set by default.
integrations = [sentry_flask]

executor_class, _ = ExecutorLoader.import_default_executor_cls()
executor_class, _ = ExecutorLoader.import_default_executor_cls(validate=False)

if executor_class.supports_sentry:
from sentry_sdk.integrations.celery import CeleryIntegration
Expand Down