Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix 2.7.0 db migration job errors #33652

Merged
merged 2 commits into from
Aug 23, 2023
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