summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeni Dobranov <evgeni.dobranov@mongodb.com>2019-10-02 14:30:53 +0000
committerevergreen <evergreen@mongodb.com>2019-10-02 14:30:53 +0000
commita9674251a5f0fc9785d787f3f7922312c37d4a04 (patch)
treee3898cd345605fb06a7b642bd3b37817e9494f4e
parent760f653d1ea2f370357e42ffbb8a525c07b56f48 (diff)
downloadmongo-a9674251a5f0fc9785d787f3f7922312c37d4a04.tar.gz
SERVER-39774 Revert increased number of updates in rollback_wt_cache_full.js
-rw-r--r--jstests/noPassthrough/rollback_wt_cache_full.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/jstests/noPassthrough/rollback_wt_cache_full.js b/jstests/noPassthrough/rollback_wt_cache_full.js
index 6b6e7a79661..6eb3a173db0 100644
--- a/jstests/noPassthrough/rollback_wt_cache_full.js
+++ b/jstests/noPassthrough/rollback_wt_cache_full.js
@@ -42,7 +42,8 @@
const rollbackSizeLimitMB = 300;
const minDocSizeMB = 10;
const largeString = 'x'.repeat(minDocSizeMB * 1024 * 1024);
- const numDocs = Math.floor(rollbackSizeLimitMB / minDocSizeMB) - 5;
+ // TODO(SERVER-39774): Increase numDocs to Math.floor(rollbackSizeLimitMB / minDocSizeMB).
+ const numDocs = 1;
// Operations that will be present on both nodes, before the common point.
const collName = 'test.t';