This is an automated email from the ASF dual-hosted git repository.
gopidesu 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 72d391c25f3 Set execution api url in breeze config environment (#49753)
72d391c25f3 is described below
commit 72d391c25f346994c1644e1c928e704e1f198f47
Author: GPK <[email protected]>
AuthorDate: Thu Apr 24 23:09:09 2025 +0100
Set execution api url in breeze config environment (#49753)
* Set execution api url in breeze config environment
* Set execution api url from breeze shell params
---
dev/breeze/src/airflow_breeze/params/shell_params.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/dev/breeze/src/airflow_breeze/params/shell_params.py
b/dev/breeze/src/airflow_breeze/params/shell_params.py
index 947ac2c54f2..067b2ba6f41 100644
--- a/dev/breeze/src/airflow_breeze/params/shell_params.py
+++ b/dev/breeze/src/airflow_breeze/params/shell_params.py
@@ -523,6 +523,7 @@ class ShellParams:
_set_var(_env, "AIRFLOW__CELERY__BROKER_URL",
self.airflow_celery_broker_url)
_set_var(_env, "AIRFLOW__CORE__AUTH_MANAGER", self.auth_manager_path)
_set_var(_env, "AIRFLOW__CORE__EXECUTOR", self.executor)
+ _set_var(_env, "AIRFLOW__CORE__EXECUTION_API_SERVER_URL",
"http://localhost:8080/execution/")
if self.auth_manager == SIMPLE_AUTH_MANAGER:
_set_var(_env, "AIRFLOW__CORE__SIMPLE_AUTH_MANAGER_USERS",
"admin:admin,viewer:viewer")
_set_var(