summaryrefslogtreecommitdiff
path: root/src/mongo/shell/assert.js
diff options
context:
space:
mode:
authorMikhail Shchatko <mikhail.shchatko@mongodb.com>2020-03-03 15:27:20 +0300
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2020-03-03 14:49:40 +0000
commit165ccb8818ca5cd8d8f8efd1abe085014e8aa0ed (patch)
treed80cde7481bb82f9ad585ed36951f3853beb4746 /src/mongo/shell/assert.js
parent1cd97d23aacdeb7d4f80254490fcf37d21d86167 (diff)
downloadmongo-165ccb8818ca5cd8d8f8efd1abe085014e8aa0ed.tar.gz
SERVER-46552 Increase local assert.soon timeout to 90 seconds
Diffstat (limited to 'src/mongo/shell/assert.js')
-rw-r--r--src/mongo/shell/assert.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/shell/assert.js b/src/mongo/shell/assert.js
index eb77b39ab0b..86ba9f78687 100644
--- a/src/mongo/shell/assert.js
+++ b/src/mongo/shell/assert.js
@@ -327,7 +327,7 @@ assert = (function() {
if (TestData && TestData.inEvergreen) {
timeout = timeout || 10 * 60 * 1000;
} else {
- timeout = timeout || 60 * 1000;
+ timeout = timeout || 90 * 1000;
}
interval = interval || 200;