summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAllison Easton <allison.easton@mongodb.com>2021-06-23 14:32:20 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2021-07-20 07:47:05 +0000
commit19e47afc9939d82542ccbac1e6423938fb8a79c1 (patch)
treefff32f829dc75c23139ece832380a9b756ce47d7
parent0b73de2892501d3569f13bb7e375e29f902884a7 (diff)
downloadmongo-19e47afc9939d82542ccbac1e6423938fb8a79c1.tar.gz
SERVER-57850 Increase timeout when waiting for migration on authCommands.js
-rw-r--r--jstests/sharding/authCommands.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/sharding/authCommands.js b/jstests/sharding/authCommands.js
index 6c3f905f266..409383c2ddb 100644
--- a/jstests/sharding/authCommands.js
+++ b/jstests/sharding/authCommands.js
@@ -92,7 +92,7 @@ assert.soon(function() {
var x = st.chunkDiff("foo", "test");
print("chunk diff: " + x);
return x < 2 && configDB.locks.findOne({_id: 'test.foo'}).state == 0;
-}, "no balance happened", 5 * 60 * 1000);
+}, "no balance happened", 15 * 60 * 1000);
var map = function() {
emit(this.i, this.j);