diff options
author | Spencer T Brody <spencer@mongodb.com> | 2016-03-09 18:01:38 -0500 |
---|---|---|
committer | Spencer T Brody <spencer@mongodb.com> | 2016-03-10 11:57:37 -0500 |
commit | f1354f68af7b8e95b50fb4c27628e03fb7f2900c (patch) | |
tree | 12d501b2dea71a968e6ed7199742a8d86167245a | |
parent | 67c772bd2d8d6114556d269bf632cf13c366641a (diff) | |
download | mongo-f1354f68af7b8e95b50fb4c27628e03fb7f2900c.tar.gz |
SERVER-23030 Increase number of iterations of aggregations performed in csrs_upgrade_during_agg.js
-rw-r--r-- | jstests/sharding/csrs_upgrade_during_agg.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/sharding/csrs_upgrade_during_agg.js b/jstests/sharding/csrs_upgrade_during_agg.js index 20835ffc619..16781868a66 100644 --- a/jstests/sharding/csrs_upgrade_during_agg.js +++ b/jstests/sharding/csrs_upgrade_during_agg.js @@ -41,7 +41,7 @@ load("jstests/libs/csrs_upgrade_util.js"); var joinParallelShell = startParallelShell(function() { db = db.getSiblingDB('csrs_upgrade_during_agg'); - for (var i = 0; i < 2000; i++) { + for (var i = 0; i < 3000; i++) { if (i % 100 == 0) { print("Performing aggregation iteration: " + i); } |