From cdb520eb366b5b73c2b501e340b97765f2801227 Mon Sep 17 00:00:00 2001 From: Josh Reini Date: Fri, 10 Jan 2025 16:36:18 -0500 Subject: [PATCH] undo change --- src/dashboard/trulens/dashboard/run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dashboard/trulens/dashboard/run.py b/src/dashboard/trulens/dashboard/run.py index 2d9579da4..fce0dd559 100644 --- a/src/dashboard/trulens/dashboard/run.py +++ b/src/dashboard/trulens/dashboard/run.py @@ -219,7 +219,7 @@ def listen_to_dashboard(proc: subprocess.Popen, pipe, out, started): line # store the url when dashboard is started ) else: - if "Local URL: " in line: + if "Network URL: " in line: url = line.split(": ")[1] url = url.rstrip() print(f"Dashboard started at {url} .")