From da000254d751c7741b996e5f03cdae2ea61ec313 Mon Sep 17 00:00:00 2001 From: Eric Milkie Date: Wed, 24 Oct 2012 21:38:30 -0400 Subject: SERVER-6802 fix call to insert() --- jstests/repl/repl14.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'jstests/repl') diff --git a/jstests/repl/repl14.js b/jstests/repl/repl14.js index 0e56aac6a35..2bcacd3f417 100644 --- a/jstests/repl/repl14.js +++ b/jstests/repl/repl14.js @@ -22,7 +22,7 @@ function testWithCollectionIndexIds( capped, sparse, useIds ) { mc.insert( toInsert ); } else { // Otherwise avoid the auto generated _id. - mc._mongo.insert( mc._fullName, toInsert ); + mc._mongo.insert( mc._fullName, toInsert, 0 ); } s = rt.start( false ); // slave -- cgit v1.2.1