mirror of
https://gitlab.com/veilid/veilid.git
synced 2025-07-22 06:38:51 -04:00
disable async-std+windows build
This commit is contained in:
parent
633c0394c9
commit
25637e5ff5
7 changed files with 31 additions and 21 deletions
|
@ -155,7 +155,6 @@ class _JsonVeilidAPI(VeilidAPI):
|
|||
async def connect_ipc(
|
||||
cls, ipc_path: str, update_callback: Callable[[VeilidUpdate], Awaitable]
|
||||
) -> Self:
|
||||
print("opening pipe")
|
||||
|
||||
if os.name=='nt':
|
||||
async def open_windows_pipe(path=None, *,
|
||||
|
@ -173,8 +172,6 @@ class _JsonVeilidAPI(VeilidAPI):
|
|||
else:
|
||||
reader, writer = await asyncio.open_unix_connection(ipc_path)
|
||||
|
||||
print(f"reader: {vars(reader)}\nwriter: {vars(writer)}\n")
|
||||
|
||||
veilid_api = cls(reader, writer, update_callback)
|
||||
veilid_api.handle_recv_messages_task = asyncio.create_task(
|
||||
veilid_api.handle_recv_messages(), name="JsonVeilidAPI.handle_recv_messages"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue