From ca876c1ecb4ca316efa11272344abf192c359a6d Mon Sep 17 00:00:00 2001 From: Harrison Feng Date: Sat, 4 Jan 2020 08:17:16 +0800 Subject: [PATCH] Make sure dashboard link can be clicked directly. (#6683) --- python/ray/services.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/ray/services.py b/python/ray/services.py index b85354919..4341ee4aa 100644 --- a/python/ray/services.py +++ b/python/ray/services.py @@ -1091,7 +1091,7 @@ def start_dashboard(require_webui, dashboard_url = "{}:{}".format( host if host != "0.0.0.0" else get_node_ip_address(), port) - logger.info("View the Ray dashboard at {}{}{}{}{}.".format( + logger.info("View the Ray dashboard at {}{}{}{}{}".format( colorama.Style.BRIGHT, colorama.Fore.GREEN, dashboard_url, colorama.Fore.RESET, colorama.Style.NORMAL)) return dashboard_url, process_info