You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The docs for SharedPV claim that the event loop can be passed with loop=, however in the source code, asyncio.get_running_loop is always called, meaning an asyncio.new_event_loop can never be passed in.
The text was updated successfully, but these errors were encountered:
The documentation is out of date since #80 and #82, which removed loop= following removal from asyncio with py 3.10. Probably because it is out-of-line in documentation/server.rst.
I'm trying to follow a similar structure to asynciotest.py, but am having problems getting async put/rpc on the SharedPV handlers to run at all. This is with a Server.forever and I suspect there's blocking going on.
Are there any projects using an asyncio p4p server you could point me towards?
The docs for
SharedPV
claim that the event loop can be passed withloop=
, however in the source code,asyncio.get_running_loop
is always called, meaning anasyncio.new_event_loop
can never be passed in.The text was updated successfully, but these errors were encountered: