Skip to content

Commit 70d07d3

Browse files
[Feat][Core/Dashboard] Re-implement dashboard subprocess modules with aiohttp server/client (#51172)
Signed-off-by: Ruiyang Wang <rywang014@gmail.com> Signed-off-by: Chi-Sheng Liu <chishengliu@chishengliu.com>
1 parent 7622bd0 commit 70d07d3

File tree

8 files changed

+430
-760
lines changed

8 files changed

+430
-760
lines changed

python/ray/_private/node.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -992,7 +992,7 @@ def _prepare_socket_file(self, socket_path: str, default_prefix: str):
992992
is_mac = sys.platform.startswith("darwin")
993993
if sys.platform == "win32":
994994
if socket_path is None:
995-
result = f"tcp://{self._localhost}" f":{self._get_unused_port()}"
995+
result = f"tcp://{self._localhost}:{self._get_unused_port()}"
996996
else:
997997
if socket_path is None:
998998
result = self._make_inc_temp(

0 commit comments

Comments
 (0)