summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGreg Studer <greg@10gen.com>2013-05-16 18:09:28 -0400
committerMatt Kangas <matt.kangas@10gen.com>2013-08-02 11:10:51 -0400
commit49109a06220f2497488e6b6f67cd740c44a856dc (patch)
treec8896e4546e608ef9b1a5472fa3995a3d6bb6f6b
parent80f1630fc9a1603de5835690e49ac5fa0f4509e4 (diff)
downloadmongo-49109a06220f2497488e6b6f67cd740c44a856dc.tar.gz
SERVER-9714 buildbot auto2.js don't run connpoolsync before gle
-rw-r--r--jstests/sharding/auto2.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/jstests/sharding/auto2.js b/jstests/sharding/auto2.js
index 497a0e549ef..41cb38a4309 100644
--- a/jstests/sharding/auto2.js
+++ b/jstests/sharding/auto2.js
@@ -27,7 +27,8 @@ for ( j=0; j<30; j++ ){
}
assert.eq( i , j * 100 , "setup" );
-s.adminCommand( "connpoolsync" );
+// Until SERVER-9715 is fixed, the sync command must be run on a diff connection
+new Mongo( s.s.host ).adminCommand( "connpoolsync" );
db.getLastError();
print( "done inserting data" );