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
/** Specifies the location of a local .pem file that contains the root certificate chain from the Certificate Authority. This file is used to validate the certificate presented by the mongod/mongos instance. */
119
119
tlsCAFile?: string;
120
+
/** Specifies the location of a local CRL .pem file that contains the client revokation list. */
121
+
tlsCRLFile?: string;
120
122
/** Bypasses validation of the certificates presented by the mongod/mongos instance */
121
123
tlsAllowInvalidCertificates?: boolean;
122
124
/** Disables hostname validation of the certificate presented by the mongod/mongos instance. */
@@ -437,6 +439,9 @@ export class MongoClient extends TypedEventEmitter<MongoClientEvents> {
0 commit comments