You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ssl: a hash of options to support SSL connections (default null). Currently, there is only one option available, and if the ssl option is specified, this key is required:
ca: a list of Node.js Buffer objects containing SSL CA certificates.
# Configuration options for enabling an SSL connection# Allows the ability to pass in all the options as specified in# [tls.connect](https://nodejs.org/api/tls.html#tls_tls_connect_options_callback)# or just true in case the client wants ssl but the server# is using a certificate with a valid verified chain and there# is no need to specify certificates on the clientiftypeofhost.sslis'boolean'&&host.ssl@ssl= {}
elseiftypeofhost.sslis'object'@ssl=host.sslelse@ssl=false
In the document, https://www.rethinkdb.com/api/javascript/connect/
But, according to the source code
https://github.com/rethinkdb/rethinkdb/blob/v2.3.3/drivers/javascript/net.coffee#L160-L171
and
https://github.com/rethinkdb/rethinkdb/blob/v2.3.3/drivers/javascript/net.coffee#L952-L957
it allows all NodeJS TLS connection options to pass in.
The text was updated successfully, but these errors were encountered: