In Python 2.7, I'm getting
rethinkdb.errors.ReqlDriverError: Could not connect to aws-us-east-1-portal.3.dblayer.com:10575. Error: 'module' object has no attribute 'SSLContext'
when trying to connect through SSL.
The problem I think is that ssl.SSLContext was only added in Python 3.2, see https://docs.python.org/dev/library/ssl.html#ssl.SSLContext
In Python 2.7, I'm getting
when trying to connect through SSL.
The problem I think is that
ssl.SSLContextwas only added in Python 3.2, see https://docs.python.org/dev/library/ssl.html#ssl.SSLContext