This is an automated email from the ASF dual-hosted git repository.

potiuk 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 599b3ab85de Use localhost instead of 127.0.0.1 in breeze visuals 
(#47534)
599b3ab85de is described below

commit 599b3ab85de08544397168378e0f1660d58ce04a
Author: Amogh Desai <[email protected]>
AuthorDate: Sat Mar 8 22:34:42 2025 +0530

    Use localhost instead of 127.0.0.1 in breeze visuals (#47534)
---
 dev/breeze/doc/03_developer_tasks.rst          | 12 ++++++------
 dev/breeze/src/airflow_breeze/utils/visuals.py | 12 ++++++------
 2 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/dev/breeze/doc/03_developer_tasks.rst 
b/dev/breeze/doc/03_developer_tasks.rst
index 10e0e0f7775..d3fd1f01629 100644
--- a/dev/breeze/doc/03_developer_tasks.rst
+++ b/dev/breeze/doc/03_developer_tasks.rst
@@ -123,12 +123,12 @@ You can connect to these ports/databases using:
 
 .. code-block::
 
-    * ssh connection for remote debugging: ssh -p 12322 [email protected] pw: 
airflow
-    * API server or webserver:    http://127.0.0.1:28080
-    * Flower:    http://127.0.0.1:25555
-    * Postgres:  
jdbc:postgresql://127.0.0.1:25433/airflow?user=postgres&password=airflow
-    * Mysql:     jdbc:mysql://127.0.0.1:23306/airflow?user=root
-    * Redis:     redis://127.0.0.1:26379/0
+    * ssh connection for remote debugging: ssh -p 12322 airflow@localhost pw: 
airflow
+    * API server or webserver:    http://localhost:28080
+    * Flower:    http://localhost:25555
+    * Postgres:  
jdbc:postgresql://localhost:25433/airflow?user=postgres&password=airflow
+    * Mysql:     jdbc:mysql://localhost:23306/airflow?user=root
+    * Redis:     redis://localhost:26379/0
 
 If you do not use ``start-airflow`` command. You can use ``tmux`` to multiply 
terminals.
 You may need to create a user prior to running the webserver in order to log 
in.
diff --git a/dev/breeze/src/airflow_breeze/utils/visuals.py 
b/dev/breeze/src/airflow_breeze/utils/visuals.py
index fd8e8357f8a..29235e16e7d 100644
--- a/dev/breeze/src/airflow_breeze/utils/visuals.py
+++ b/dev/breeze/src/airflow_breeze/utils/visuals.py
@@ -89,12 +89,12 @@ CHEATSHEET = f"""
 
         Direct links to those services that you can use from the host:
 
-          * ssh connection for remote debugging: ssh -p {SSH_PORT} 
[email protected] (password: airflow)
-          * API server or webserver:    http://127.0.0.1:{WEB_HOST_PORT}
-          * Flower:    http://127.0.0.1:{FLOWER_HOST_PORT}
-          * Postgres:  
jdbc:postgresql://127.0.0.1:{POSTGRES_HOST_PORT}/airflow?user=postgres&password=airflow
-          * Mysql:     
jdbc:mysql://127.0.0.1:{MYSQL_HOST_PORT}/airflow?user=root
-          * Redis:     redis://127.0.0.1:{REDIS_HOST_PORT}/0
+          * ssh connection for remote debugging: ssh -p {SSH_PORT} 
airflow@localhost (password: airflow)
+          * API server or webserver:    http://localhost:{WEB_HOST_PORT}
+          * Flower:    http://localhost:{FLOWER_HOST_PORT}
+          * Postgres:  
jdbc:postgresql://localhost:{POSTGRES_HOST_PORT}/airflow?user=postgres&password=airflow
+          * Mysql:     
jdbc:mysql://localhost:{MYSQL_HOST_PORT}/airflow?user=root
+          * Redis:     redis://localhost:{REDIS_HOST_PORT}/0
 
     [info]* How can I add my stuff in Breeze:[/]
 

Reply via email to