We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following deadlocks:
@pytest.mark.trio async def test_raise_sleeping(self, loop): def raise_exc(): raise Exception() async def raise_sleeping(): loop.call_later(0.1, raise_exc) await asyncio.sleep(0.2) await trio_asyncio.aio_as_trio(raise_sleeping, loop=loop)()
It gets stuck in run_aio_future on wait_task_rescheduled after it hits abort_cb callback:
run_aio_future
wait_task_rescheduled
abort_cb
trio-asyncio/trio_asyncio/_util.py
Lines 34 to 45 in b93c320
The problem exist at least since release 0.11.0.
#88 is potential similar.
(Extracted from #103.)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The following deadlocks:
It gets stuck in
run_aio_future
onwait_task_rescheduled
after it hitsabort_cb
callback:trio-asyncio/trio_asyncio/_util.py
Lines 34 to 45 in b93c320
The problem exist at least since release 0.11.0.
#88 is potential similar.
(Extracted from #103.)
The text was updated successfully, but these errors were encountered: