Unverified Commit 6b024ca7 authored by Jakob Görgen's avatar Jakob Görgen
Browse files

fixed opposing socket creation bug

parent a3a041bc
...@@ -222,11 +222,11 @@ class Instantiation(util_base.IdObj): ...@@ -222,11 +222,11 @@ class Instantiation(util_base.IdObj):
self, socket: Socket, supported_sock_types: set[SockType] = set() self, socket: Socket, supported_sock_types: set[SockType] = set()
) -> Socket: ) -> Socket:
new_ty = ( new_ty = (
SockType.LISTEN if socket._type == SockType.CONNECT else SockType.LISTEN SockType.LISTEN if socket._type == SockType.CONNECT else SockType.CONNECT
) )
if new_ty not in supported_sock_types: if new_ty not in supported_sock_types:
raise Exception( raise Exception(
f"cannot create opposing socket, as required type is not supported: required={new_ty}, supported={','.join(supported_sock_types)}" f"cannot create opposing socket, as required type is not supported: required={new_ty.name}, supported={','.join(supported_sock_types)}"
) )
new_path = socket._path new_path = socket._path
new_socket = Socket(path=new_path, ty=new_ty) new_socket = Socket(path=new_path, ty=new_ty)
......
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