This is an automated email from the ASF dual-hosted git repository.
kamilbregula 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 7c7dbfe186 Add enum validation for [webserver]analytics_tool (#24032)
7c7dbfe186 is described below
commit 7c7dbfe186773fdbe2d791667e7e97b8e00f771f
Author: Kamil BreguĊa <[email protected]>
AuthorDate: Tue May 31 10:17:55 2022 +0200
Add enum validation for [webserver]analytics_tool (#24032)
---
airflow/configuration.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/airflow/configuration.py b/airflow/configuration.py
index 729e780f74..93612160c8 100644
--- a/airflow/configuration.py
+++ b/airflow/configuration.py
@@ -273,6 +273,7 @@ class AirflowConfigParser(ConfigParser):
("logging", "fab_logging_level"): _available_logging_levels,
# celery_logging_level can be empty, which uses logging_level as
fallback
("logging", "celery_logging_level"): _available_logging_levels + [''],
+ ("webserver", "analytical_tool"): ['google_analytics', 'metarouter',
'segment', ''],
}
upgraded_values: Dict[Tuple[str, str], str]