Marc Monfort
Results
1
issues of
Marc Monfort
When trying to use `asyncio.wait_for()` to add a timeout to `acquire()`, seems that it is not being properly acquired for the current task. ```python lock = RWLock() try: await asyncio.wait_for(lock.writer_lock.acquire(),...