From 19e47afc9939d82542ccbac1e6423938fb8a79c1 Mon Sep 17 00:00:00 2001 From: Allison Easton Date: Wed, 23 Jun 2021 14:32:20 +0000 Subject: SERVER-57850 Increase timeout when waiting for migration on authCommands.js --- jstests/sharding/authCommands.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- cgit v1.2.1