From 4457ff3030539aa1b629a92c6cec87ac7ade118f Mon Sep 17 00:00:00 2001 From: Pranav Manglik Date: Thu, 19 Mar 2026 02:08:35 +0530 Subject: [PATCH 1/2] Fix #6165 --- reflex/utils/exec.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/reflex/utils/exec.py b/reflex/utils/exec.py index c67976b23b2..42899e5a0ed 100644 --- a/reflex/utils/exec.py +++ b/reflex/utils/exec.py @@ -159,8 +159,9 @@ def notify_frontend(url: str, backend_present: bool): def notify_backend(): """Output a string notifying where the backend is running.""" + config = get_config() console.print( - f"Backend running at: [bold green]http://0.0.0.0:{get_config().backend_port}[/bold green]" + f"Backend running at: [bold green]http://{config().backend_host}:{config().backend_port}[/bold green]" ) From 085c5df1d2a820a43acd6fc6325c4ad8f433d26a Mon Sep 17 00:00:00 2001 From: Pranav Manglik Date: Thu, 19 Mar 2026 02:14:21 +0530 Subject: [PATCH 2/2] Fix #6165 --- reflex/utils/exec.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reflex/utils/exec.py b/reflex/utils/exec.py index 42899e5a0ed..70d6215d8fc 100644 --- a/reflex/utils/exec.py +++ b/reflex/utils/exec.py @@ -161,7 +161,7 @@ def notify_backend(): """Output a string notifying where the backend is running.""" config = get_config() console.print( - f"Backend running at: [bold green]http://{config().backend_host}:{config().backend_port}[/bold green]" + f"Backend running at: [bold green]http://{config.backend_host}:{config.backend_port}[/bold green]" )