ash

Results 62 issues of ash

This means that long-running handler methods (if they are long-running due to a long `await`) will not prevent further incoming requests from being handled. This means your RPC handlers can...

Say you have the following handler: ```python async def takes_a_moment(self) -> str: await asyncio.sleep(1) return "hello world" ``` I adapted the `test_recursive_rpc_calls` test to see what would happen if I...