summaryrefslogtreecommitdiff
path: root/jstests/sharding/cursor1.js
diff options
context:
space:
mode:
authorEric Milkie <milkie@10gen.com>2012-06-19 10:49:54 -0400
committerEric Milkie <milkie@10gen.com>2012-06-19 10:50:03 -0400
commite44e3304b66d3fb778da67c34277d9091abe544a (patch)
treeb02a986c716813f85c241aca5062a98623f371fe /jstests/sharding/cursor1.js
parentbdded78e9f2ba6c703811a7e20e0b90adfc0d5b3 (diff)
downloadmongo-e44e3304b66d3fb778da67c34277d9091abe544a.tar.gz
help slower builders (FreeBSD) by giving more time for cursor to time out
Diffstat (limited to 'jstests/sharding/cursor1.js')
-rw-r--r--jstests/sharding/cursor1.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/sharding/cursor1.js b/jstests/sharding/cursor1.js
index f6cb9e4c7c4..d0e9751b226 100644
--- a/jstests/sharding/cursor1.js
+++ b/jstests/sharding/cursor1.js
@@ -52,7 +52,7 @@ printjson( before )
sleep( 6000 )
assert( cur.next() , "T3" )
assert( cur.next() , "T4" );
-sleep( 22000 )
+sleep( 24000 )
assert.throws( function(){ cur.next(); } , null , "T5" )
after = db.runCommand( { "cursorInfo" : 1 , "setTimeout" : 10000 } ) // 10 seconds
gc(); gc()