diff options
author | Mikhail Shchatko <mikhail.shchatko@mongodb.com> | 2020-03-03 15:27:20 +0300 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2020-03-03 14:49:40 +0000 |
commit | 165ccb8818ca5cd8d8f8efd1abe085014e8aa0ed (patch) | |
tree | d80cde7481bb82f9ad585ed36951f3853beb4746 | |
parent | 1cd97d23aacdeb7d4f80254490fcf37d21d86167 (diff) | |
download | mongo-165ccb8818ca5cd8d8f8efd1abe085014e8aa0ed.tar.gz |
SERVER-46552 Increase local assert.soon timeout to 90 seconds
-rw-r--r-- | src/mongo/shell/assert.js | 2 |
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; |