Hello ! I'm using a simple asyncio.create_connection() call, put in the event loop using asyncio.async. If the connection fails, I got an error message (from the logging) module, but I can't catch it.
There is no way to define an error callback and I can't use run_until_complete() because my event loop may already be running (and so it will raise an error). My code have to know that the connection failed (for example to try connecting again in X secs). How can I do ? Thanks,
