summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* BUMP 2.4.4r2.4.4Dan Pasette2013-06-022-2/+2
|
* post 2.4.4-rc0Eric Milkie2013-05-282-2/+2
|
* BUMP 2.4.4-rc0r2.4.4-rc0Eric Milkie2013-05-232-2/+2
|
* SERVER-8070 fix comparision to be correctEric Milkie2013-05-231-1/+1
|
* SERVER-9694 fix test to cover all GLE stepdown casesEric Milkie2013-05-231-1/+4
|
* print result from GLE if test fails (for debugging)Eric Milkie2013-05-231-1/+3
|
* SERVER-9730 under any circumstances, do not vote yea while a primary ↵Eric Milkie2013-05-221-5/+3
| | | | already exists
* SERVER-9661 config upgrade v0->v3 fails when dropped collection has ↵Greg Studer2013-05-222-3/+11
| | | | noBalance set
* SERVER-9260 Race in hash_presplit.jsRandolph Tan2013-05-224-104/+71
| | | | Split the each test case into different files to isolate them from each other.
* SERVER-8070 more reliable test (failpoint was not in the right place)Eric Milkie2013-05-222-9/+9
|
* SERVER-9718 authCommands.js wait 5 minutes for migrations on very slow test ↵Greg Studer2013-05-221-1/+1
| | | | systems
* SERVER-9719 sharding_multiple_ns_rs.js wait for mongos to detect primary ↵Greg Studer2013-05-221-1/+5
| | | | failover
* SERVER-9720 return_partial_shards_down.js turn off balancer before manual ↵Greg Studer2013-05-221-0/+3
| | | | chunk moves
* SERVER-9695 fix racy testEric Milkie2013-05-221-2/+2
|
* SERVER-9721 do not use sleepmicros on Windows for yieldingEric Milkie2013-05-221-0/+4
|
* SERVER-9702 do not use line comments in one-linersEric Milkie2013-05-221-1/+0
|
* SERVER-9484 don't ignore geometries w/>1 covers if one of them isn't in the ↵Hari Khalsa2013-05-202-4/+21
| | | | | | | | search annulus Conflicts: src/mongo/db/geo/s2nearcursor.cpp
* SERVER-9621 Fix case for 32-bit windows test.Alberto Lerner2013-05-191-1/+1
|
* SERVER-9621 Disable jstests/dur/closeall.js on 32-bit WindowsTad Marshall2013-05-191-6/+13
| | | | | | | | | | This test fails frequently on 32-bit Windows due to remapPrivateView being unable to remap a file when another thread allocate memory while a file is unmapped. Disable the test in 32-bit Windows since this can't really be fixed without changes to the storage layer (and 32-bit does not benefit from stress testing).
* SERVER-9621 Add getBuildInfo() function to shellTad Marshall2013-05-191-2/+12
|
* SERVER-8741 make sure we contact from-shard at least once after commitGreg Studer2013-05-191-2/+14
|
* SERVER-8066 (2/2) Skip undefined fields in mongorestoreShaun Verch2013-05-171-1/+12
|
* SERVER-8066 (1/2) Removed redundant if statementShaun Verch2013-05-171-14/+12
|
* SERVER-6947 Do not create undefined fields in db.createCollectionShaun Verch2013-05-171-1/+5
|
* SERVER-9502 fix assert code in unit testEric Milkie2013-05-171-2/+2
|
* SERVER-9502 fix assert codeEric Milkie2013-05-171-1/+1
|
* SERVER-9502 prohibit _id as RegExEric Milkie2013-05-173-2/+36
| | | | Otherwise, this breaks when replication attempts to do a query with the regular expression as _id.
* SERVER-9638 Handle case of previous moveChunk not finished yetTad Marshall2013-05-171-2/+14
| | | | | | Depending on the speeds of operations in the shards, it is possible that the "to" shard has not finished a migration when we try the next one. Use assert.soon() to wait a little and retry when this happens.
* SERVER-9658 Reduce frequency of debug messageTad Marshall2013-05-171-1/+1
|
* SERVER-9647 don't transform 2dsphere-indexed desc fields into ascGreg Studer2013-05-155-2/+126
|
* SERVER-9683 propegate timeout into ReplSetTest.initiate() and make ↵Eric Milkie2013-05-142-8/+10
| | | | replsetprio1.js wait longer
* SERVER-9542 Change comparison operator to correct typeTad Marshall2013-05-131-1/+1
| | | | Do not use "<" to execute a "<=" comparison.
* SERVER-9333 wait long enough for slow builders like Windows DebugEric Milkie2013-05-131-3/+3
|
* SERVER-9333 correct reference counting of GhostSlave membersEric Milkie2013-05-131-3/+2
| | | | | | | | | | The _ghostCache contains shared pointers to GhostSlave members. When we clear this cache, we decrement all the reference counts to these objects. Because we were not keeping a shared_ptr to a GhostSlave object in percolate(), but instead were using a bare pointer, this caused the bare pointer to be deleted out from under us when we cleared the cache. This in turn caused the internal objects like the OplogReader to be deleted, which caused segfaults in percolate() when we attempted to advance the oplogreader cursor.
* SERVER-9333 clear ghostcache at reconfig timeEric Milkie2013-05-135-2/+101
|
* SERVER-9538 Only update BufBuilder's len if successfully grewMathias Stearn2013-05-132-5/+28
| | | | | Otherwise BSONObj destructor will try to grow again to add EOO byte, causing a double exception and terminate() call.
* SERVER-9315 Make sure local.slaves collection can be maintained in a system ↵Spencer T Brody2013-05-131-0/+1
| | | | with security enabled
* SERVER-9448: make map and reduce argument and receiver objects mutableBen Becker2013-05-132-3/+65
|
* SERVER-9401 remove duplicate points in lines because S2 doesn't like themHari Khalsa2013-05-132-3/+20
|
* SERVER-9542 Fix incorrect unit testTad Marshall2013-05-131-1/+1
| | | | | | | Unit test was passing due to the bug fixed in SERVER-9542. We SHOULD get an error when trying to cloneMinus to the same version. Changed the test to use a higher major version so that no error message will be returned.
* Fixes SERVER-9491Johan Hedin2013-05-132-2/+2
| | | | Upper chunk key was not written properly to the log in some places.
* SERVER-7588 Improve logic for seconds and milliseconds in ISODate constructorTad Marshall2013-05-131-3/+23
| | | | | Do not use floating point for seconds, only for milliseconds. Adjust other date components when milliseconds round up to 1000.
* SERVER-7424 Use simpler regex to produce single line output in tojson()Tad Marshall2013-05-131-1/+1
| | | | | When displaying small objects, convert only tabs, carriage returns and newlines to single spaces, leaving other whitespace alone.
* SERVER-9649 Make writeBacksQueued be granted by clusterAdminSpencer T Brody2013-05-101-1/+1
|
* SERVER-9417 fix unit test to run correctly with authEric Milkie2013-05-081-2/+1
|
* SERVER-9417 assert if we stepDown while waiting to satisfy GLEEric Milkie2013-05-082-2/+48
|
* SERVER-9417 opReplicatedEnough should assert on step downEliot Horowitz2013-05-082-2/+14
|
* SERVER-9578 install mongos signal handler for SIGUSR1 before spawning any ↵Eric Milkie2013-05-061-2/+2
| | | | threads
* SERVER-9528 need a larger oplog for some builders to avoid RS102Eric Milkie2013-05-021-1/+1
|
* SERVER-9528 retry network failures during document copy at initial sync timeEric Milkie2013-05-012-13/+64
|