Skip to content
Merged
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
3 changes: 3 additions & 0 deletions airflow/executors/executor_loader.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,9 @@ def load_executor(cls, executor_name: str) -> BaseExecutor:

:return: an instance of executor class via executor_name
"""
from airflow.providers_manager import ProvidersManager

ProvidersManager().initialize_providers_configuration()
if executor_name == CELERY_KUBERNETES_EXECUTOR:
return cls.__load_celery_kubernetes_executor()
elif executor_name == LOCAL_KUBERNETES_EXECUTOR:
Expand Down