ah oops, the bindhost port was a test value that got committed

This commit is contained in:
jesopo 2020-04-19 00:55:32 +01:00
parent 7232876a75
commit bf68b6cb75

View file

@ -37,7 +37,7 @@ class TCPTransport(ITCPTransport):
local_addr: Optional[Tuple[str, int]] = None
if not bindhost is None:
local_addr = (bindhost, 53567)
local_addr = (bindhost, 0)
reader, writer = await open_connection(
hostname,