@@ -89,29 +89,34 @@ The old option names and their renamed equivalents are summarized in the table
89
89
below. Some renamed options have different semantics from the option being
90
90
replaced as noted in the 'Migration Notes' column.
91
91
92
- +--------------------+-------------------------------+-------------------------------------------------------------+
93
- | Old URI Option | Renamed URI Option | Migration Notes |
94
- +====================+===============================+=============================================================+
95
- | ssl_pem_passphrase | tlsCertificateKeyFilePassword | - |
96
- +--------------------+-------------------------------+-------------------------------------------------------------+
97
- | ssl_ca_certs | tlsCAFile | - |
98
- +--------------------+-------------------------------+-------------------------------------------------------------+
99
- | ssl_crlfile | tlsCRLFile | - |
100
- +--------------------+-------------------------------+-------------------------------------------------------------+
101
- | ssl_match_hostname | tlsAllowInvalidHostnames | ``ssl_match_hostname=True `` is equivalent to |
102
- | | | ``tlsAllowInvalidHostnames=False `` and vice-versa. |
103
- +--------------------+-------------------------------+-------------------------------------------------------------+
104
- | ssl_cert_reqs | tlsAllowInvalidCertificates | Instead of ``ssl.CERT_NONE ``, ``ssl.CERT_OPTIONAL `` |
105
- | | | and ``ssl.CERT_REQUIRED ``, ``tlsAllowInvalidCertificates `` |
106
- | | | expects a boolean value - ``True `` is equivalent to |
107
- | | | ``ssl.CERT_NONE ``, while ``False `` is equivalent to |
108
- | | | ``ssl.CERT_REQUIRED ``. |
109
- +--------------------+-------------------------------+-------------------------------------------------------------+
110
- | ssl_certfile | tlsCertificateKeyFile | Instead of using ``ssl_certfile `` and ``ssl_keyfile `` |
111
- | | | to specify the certificate and private key files, |
112
- +--------------------+ | ``tlsCertificateKeyFile `` expects a single file containing |
113
- | ssl_keyfile | | both the client certificate and the private key. |
114
- +--------------------+-------------------------------+-------------------------------------------------------------+
92
+ +--------------------+-------------------------------+--------------------------------------------------------+
93
+ | Old URI Option | Renamed URI Option | Migration Notes |
94
+ +====================+===============================+========================================================+
95
+ | ssl_pem_passphrase | tlsCertificateKeyFilePassword | - |
96
+ +--------------------+-------------------------------+--------------------------------------------------------+
97
+ | ssl_ca_certs | tlsCAFile | - |
98
+ +--------------------+-------------------------------+--------------------------------------------------------+
99
+ | ssl_crlfile | tlsCRLFile | - |
100
+ +--------------------+-------------------------------+--------------------------------------------------------+
101
+ | ssl_match_hostname | tlsAllowInvalidHostnames | ``ssl_match_hostname=True `` is equivalent to |
102
+ | | | ``tlsAllowInvalidHostnames=False `` and vice-versa. |
103
+ +--------------------+-------------------------------+--------------------------------------------------------+
104
+ | ssl_cert_reqs | tlsAllowInvalidCertificates | Instead of ``ssl.CERT_NONE ``, ``ssl.CERT_OPTIONAL `` |
105
+ | | | and ``ssl.CERT_REQUIRED ``, the new option expects |
106
+ | | | a boolean value - ``True `` is equivalent to |
107
+ | | | ``ssl.CERT_NONE ``, while ``False `` is equivalent to |
108
+ | | | ``ssl.CERT_REQUIRED ``. |
109
+ +--------------------+-------------------------------+--------------------------------------------------------+
110
+ | ssl_certfile | tlsCertificateKeyFile | Instead of using ``ssl_certfile `` and ``ssl_keyfile `` |
111
+ | | | to specify the certificate and private key files |
112
+ +--------------------+ | respectively, use ``tlsCertificateKeyFile `` to pass |
113
+ | ssl_keyfile | | a single file containing both the client certificate |
114
+ | | | and the private key. |
115
+ +--------------------+-------------------------------+--------------------------------------------------------+
116
+ | j | journal | - |
117
+ +--------------------+-------------------------------+--------------------------------------------------------+
118
+ | wtimeout | wTimeoutMS | - |
119
+ +--------------------+-------------------------------+--------------------------------------------------------+
115
120
116
121
MongoClient.fsync is removed
117
122
............................
0 commit comments