"vscode:/vscode.git/clone" did not exist on "3e330fcb218e207bbc9eec3ed479a8b53b25c98d"
Unverified Commit a979d977 authored by liiliiliil's avatar liiliiliil Committed by GitHub
Browse files

[Bugfix] Fix ipv6 address parsing bug (#3641)

parent 8af890a8
......@@ -205,7 +205,7 @@ def get_ip() -> str:
def get_distributed_init_method(ip: str, port: int) -> str:
return f"tcp://{ip}:{port}"
return f"tcp://[{ip}]:{port}"
def get_open_port() -> int:
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment