ramikg opened a new pull request, #1270: URL: https://github.com/apache/cassandra-python-driver/pull/1270
Trying to connect to Cassandra using the `asyncio` reactor times out in Python 3.9+. This is because pushing messages to the queue silently fails due to the usage of the `with await asyncio.Lock` syntax, removed in Python 3.9. I've replaced it with `async with lock` (as suggested by the [docs](https://docs.python.org/3/library/asyncio-sync.html)), and now it works. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]

