summaryrefslogtreecommitdiff
path: root/jstests/core/removeb.js
diff options
context:
space:
mode:
authorEsha Maharishi <esha.maharishi@mongodb.com>2017-06-16 16:15:45 -0400
committerEsha Maharishi <esha.maharishi@mongodb.com>2017-06-20 14:25:05 -0400
commitd5e9b4994557285017795d9ed9129341314da202 (patch)
tree64f8ba2b6c9ed0f6a94dffefaccccf2cbc75ae08 /jstests/core/removeb.js
parentf810e9a849cc98254a28e2f7c704785f2c8e0e6b (diff)
downloadmongo-d5e9b4994557285017795d9ed9129341314da202.tar.gz
SERVER-28418 make the split command on mongod return a stale version error if the requested chunk bounds are not foundr3.5.9
Diffstat (limited to 'jstests/core/removeb.js')
-rw-r--r--jstests/core/removeb.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/jstests/core/removeb.js b/jstests/core/removeb.js
index 2141e138254..8d049e2439b 100644
--- a/jstests/core/removeb.js
+++ b/jstests/core/removeb.js
@@ -11,6 +11,9 @@ t.remove({});
// Insert some data.
for (i = 0; i < 20000; ++i) {
+ if (i % 100 == 0) {
+ print(i + " of first set of 20000 documents inserted");
+ }
t.insert({a: i});
}
@@ -23,7 +26,7 @@ p = startParallelShell(
'for( i = 20000; i < 40000; ++i ) {' +
' db.jstests_removeb.insert( { a:i } );' +
' if (i % 1000 == 0) {' +
- ' print( i-20000 + \" of 20000 documents inserted\" );' +
+ ' print( i-20000 + \" of second set of 20000 documents inserted\" );' +
' }' +
'}');