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
Expected behaviour is that a ConnectionRefusedError is raised. Without Quamash, that is what happens. With quamash, run_until_complete never finishes and the following warning is printed
WARNING<7>:quamash._QEventLoop:Event callback failed
Traceback (most recent call last):
File "c:\scratch\quamash\quamash\_windows.py", line 42, in _process_events
value = callback(transferred, key, ov)
File "C:\Users\localadmin\Anaconda3\envs\artiq-env\lib\asyncio\windows_events.py", line 509, in finish_connect
ov.getresult()
ConnectionRefusedError: [WinError 1225] The remote computer refused the network connection
It looks like the future gets stuck in the PENDING state. I believe this is related to e5fc6b1
The following code snippet should tries to connect to a server that doesn't exist
Expected behaviour is that a
ConnectionRefusedError
is raised. Without Quamash, that is what happens. With quamash,run_until_complete
never finishes and the following warning is printedIt looks like the future gets stuck in the
PENDING
state. I believe this is related to e5fc6b1Changing this to
seems to resolve the issue. Thoughts?
The text was updated successfully, but these errors were encountered: