We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c571c16 commit 5219352Copy full SHA for 5219352
addon/mongocrypt.cc
@@ -578,6 +578,7 @@ MongoCrypt::MongoCrypt(const CallbackInfo& info) : ObjectWrap(info) {
578
mongocrypt_setopt_retry_kms(mongo_crypt(), true);
579
580
if (options.Get("enableMultipleCollinfo").ToBoolean()) {
581
+ /** TODO(NODE-6793): remove this option and have it always set in the next major */
582
mongocrypt_setopt_enable_multiple_collinfo(mongo_crypt());
583
}
584
src/index.ts
@@ -67,6 +67,7 @@ type MongoCryptConstructorOptions = {
67
cryptSharedLibSearchPaths?: string[];
68
cryptSharedLibPath?: string;
69
bypassQueryAnalysis?: boolean;
70
71
enableMultipleCollinfo?: boolean;
72
};
73
0 commit comments