summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeni Dobranov <evgeni.dobranov@mongodb.com>2019-10-02 15:17:40 +0000
committerevergreen <evergreen@mongodb.com>2019-10-02 15:17:40 +0000
commita1db5c954668c888f0c47313dc142b3259012647 (patch)
treeb9ba14b1037f873944f11d6c8c7eaa421d8b6a7a
parenta40b196bd3cecd0b66a6323f57e6f08efe0af392 (diff)
downloadmongo-a1db5c954668c888f0c47313dc142b3259012647.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 ab8908848b7..f7733a0110b 100644
--- a/jstests/noPassthrough/rollback_wt_cache_full.js
+++ b/jstests/noPassthrough/rollback_wt_cache_full.js
@@ -49,7 +49,8 @@ rst.initiate(config);
const rollbackSizeLimitMB = 300;
const minDocSizeMB = 10;
const largeString = 'x'.repeat(minDocSizeMB * 1024 * 1024);
-const numDocs = Math.floor(rollbackSizeLimitMB / minDocSizeMB);
+// 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';