From 99ed0afb21abbff912d42fccb7794e7677d8e4a2 Mon Sep 17 00:00:00 2001 From: Malthe Borch Date: Wed, 16 Mar 2022 12:18:45 +0000 Subject: [PATCH] Add generic connection type See https://github.com/apache/airflow/discussions/20350. --- airflow/www/views.py | 1 + 1 file changed, 1 insertion(+) diff --git a/airflow/www/views.py b/airflow/www/views.py index 6e944438d64a4..c0f578a3e8c2d 100644 --- a/airflow/www/views.py +++ b/airflow/www/views.py @@ -3725,6 +3725,7 @@ def _get_connection_types() -> List[Tuple[str, str]]: ('fs', 'File (path)'), ('mesos_framework-id', 'Mesos Framework ID'), ('email', 'Email'), + ('generic', 'Generic'), ] providers_manager = ProvidersManager() for connection_type, provider_info in providers_manager.hooks.items():