summaryrefslogtreecommitdiff
path: root/jstests
diff options
context:
space:
mode:
authorAlexander Neben <alexander.neben@mongodb.com>2022-10-03 16:49:44 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-10-03 18:44:58 +0000
commit83e32d1f56c53f9ec427158131f57fa0e5479a40 (patch)
tree2f9b14ba261af971d93eaf8271ca6d8526c63809 /jstests
parentde38a0768992b14b13a010f80a350bc5f7f1d942 (diff)
downloadmongo-83e32d1f56c53f9ec427158131f57fa0e5479a40.tar.gz
SERVER-69672 Reenabled debug mode variant
Diffstat (limited to 'jstests')
-rw-r--r--jstests/aggregation/sources/setWindowFields/spill_to_disk.js2
-rw-r--r--jstests/auth/validate_sasl_mechanism.js2
-rw-r--r--jstests/noPassthrough/predictive_connpool.js2
3 files changed, 3 insertions, 3 deletions
diff --git a/jstests/aggregation/sources/setWindowFields/spill_to_disk.js b/jstests/aggregation/sources/setWindowFields/spill_to_disk.js
index 40eeb984f45..041c6e195e9 100644
--- a/jstests/aggregation/sources/setWindowFields/spill_to_disk.js
+++ b/jstests/aggregation/sources/setWindowFields/spill_to_disk.js
@@ -29,7 +29,7 @@ let smallPartitionSize = 6;
let largePartitionSize = 21;
setParameterOnAllHosts(DiscoverTopology.findNonConfigNodes(db.getMongo()),
"internalDocumentSourceSetWindowFieldsMaxMemoryBytes",
- avgDocSize * smallPartitionSize + 50);
+ avgDocSize * smallPartitionSize + 73);
seedWithTickerData(coll, 10);
diff --git a/jstests/auth/validate_sasl_mechanism.js b/jstests/auth/validate_sasl_mechanism.js
index a819c081ff2..488fdb3afb4 100644
--- a/jstests/auth/validate_sasl_mechanism.js
+++ b/jstests/auth/validate_sasl_mechanism.js
@@ -12,7 +12,7 @@ function waitFailedToStart(pid, exitCode) {
}
return res.exitCode == exitCode;
- }, `Failed to wait for ${pid} to die with exit code ${exitCode}`, 30 * 1000);
+ }, `Failed to wait for ${pid} to die with exit code ${exitCode}`, 60 * 1000);
}
const m = MongoRunner.runMongod({
diff --git a/jstests/noPassthrough/predictive_connpool.js b/jstests/noPassthrough/predictive_connpool.js
index be307a6e318..dbe517a5667 100644
--- a/jstests/noPassthrough/predictive_connpool.js
+++ b/jstests/noPassthrough/predictive_connpool.js
@@ -105,7 +105,7 @@ function hasConnPoolStats(args) {
return hosts.map(host => checkStats(res, host)).every(x => x);
}
- assert.soon(checkAllStats, "Check #" + checkNum + " failed", 10000);
+ assert.soon(checkAllStats, "Check #" + checkNum + " failed", 10 * 1000);
jsTestLog("Check #" + checkNum + " successful");
}