Skip to content

Commit

Permalink
DRIVERS-2781 increase wait time. (#1740)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinAlbs authored Dec 4, 2024
1 parent ce9b56b commit 787bbe6
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions source/client-side-encryption/client-side-encryption.md
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ class AutoEncryptionOpts {
// Set bypassQueryAnalysis to true to use explicit encryption on indexed fields
// without the MongoDB Enterprise Advanced licensed crypt_shared library.
bypassQueryAnalysis: Optional<Boolean>; // Default false.
keyExpirationMS: Optional<Uint64>; // Default 60000.
keyExpirationMS: Optional<Uint64>; // Default 60000. 0 means "never expire".
}
```

Expand Down Expand Up @@ -1049,7 +1049,7 @@ interface ClientEncryptionOpts {
keyVaultNamespace: String;
kmsProviders: KMSProviders;
tlsOptions?: KMSProvidersTLSOptions; // Maps KMS provider to TLS options.
keyExpirationMS: Optional<Uint64>; // Default 60000.
keyExpirationMS: Optional<Uint64>; // Default 60000. 0 means "never expire".
};

interface KMSProvidersTLSOptions {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ tests:
- name: wait
object: testRunner
arguments:
ms: 2
ms: 50 # Wait long enough to account for coarse time resolution on Windows (CDRIVER-4526).
- name: find
arguments:
filter: { _id: 1 }
Expand Down Expand Up @@ -66,4 +66,4 @@ tests:
collection:
# Outcome is checked using a separate MongoClient without auto encryption.
data:
- *doc0_encrypted
- *doc0_encrypted
2 changes: 1 addition & 1 deletion source/client-side-encryption/tests/legacy/keyCache.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion source/client-side-encryption/tests/legacy/keyCache.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ tests:
- name: wait
object: testRunner
arguments:
ms: 2
ms: 50 # Wait long enough to account for coarse time resolution on Windows (CDRIVER-4526).
- name: find
arguments:
filter: { _id: 1 }
Expand Down
2 changes: 1 addition & 1 deletion source/client-side-encryption/tests/unified/keyCache.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions source/client-side-encryption/tests/unified/keyCache.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ tests:
- name: wait
object: testRunner
arguments:
ms: 2
ms: 50 # Wait long enough to account for coarse time resolution on Windows (CDRIVER-4526).
- name: decrypt
object: *clientEncryption0
arguments:
Expand All @@ -82,4 +82,4 @@ tests:
find: datakeys
filter: {"$or": [{"_id": {"$in": [ {'$binary': {'base64': 'a+YWzdygTAG62/cNUkqZiQ==', 'subType': '04'}} ] }}, {"keyAltNames": {"$in": []}}]}
$db: keyvault
readConcern: { level: "majority" }
readConcern: { level: "majority" }

0 comments on commit 787bbe6

Please sign in to comment.