Content-Length: 266769 | pFad | http://github.com/nailo2c/airflow/commit/247009ffe6b7e5d365d218ad951be533654a662b
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 a7086f9 commit 247009fCopy full SHA for 247009f
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/nailo2c/airflow/commit/247009ffe6b7e5d365d218ad951be533654a662b
Alternative Proxies:
Alternative Proxy
pFad Proxy
pFad v3 Proxy
pFad v4 Proxy
0 commit comments