Content-Length: 271134 | pFad | http://github.com/apache/airflow/commit/0486e6e5a344384d9e98dc60c4e7f19b584c3b40
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e52e8ac commit 0486e6eCopy full SHA for 0486e6e
airflow-core/src/airflow/api_fastapi/core_api/routes/ui/config.py
@@ -50,11 +50,9 @@
50
)
51
def get_configs() -> ConfigResponse:
52
"""Get configs for UI."""
53
- conf_dict = conf.as_dict()
+ config = {key: conf.get("webserver", key) for key in WEBSERVER_CONFIG_KEYS}
54
55
- config = {key: conf_dict["webserver"].get(key) for key in WEBSERVER_CONFIG_KEYS}
56
-
57
- config.update({key: conf_dict["api"].get(key) for key in API_CONFIG_KEYS})
+ config.update({key: conf.get("api", key) for key in API_CONFIG_KEYS})
58
59
task_log_reader = TaskLogReader()
60
additional_config: dict[str, Any] = {
Fetched URL: http://github.com/apache/airflow/commit/0486e6e5a344384d9e98dc60c4e7f19b584c3b40
Alternative Proxies:
Alternative Proxy
pFad Proxy
pFad v3 Proxy
pFad v4 Proxy
0 commit comments