summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* BUMP 2.4.0-rc1r2.4.0.rc1Eliot Horowitz2013-02-242-2/+2
|
* SERVER-8689, SERVER-8691Dan Pasette2013-02-242-2/+2
| | | | | Temporarily disable flaky tests shard_insert_getlasterror_w2.js and replReads.js
* buildbot stale_clustered.js wait for cleanup from implicit migration with ↵Greg Studer2013-02-231-1/+2
| | | | shardgo
* make mongos log killCursor requestsGreg Studer2013-02-221-6/+4
|
* SERVER-8683: gc() between each load() in passthrough tests to free old cursorsBen Becker2013-02-222-1/+2
|
* SERVER-8677 Remove race condition in testKristina2013-02-221-2/+15
|
* Increase logLevel in test to help debuggingTad Marshall2013-02-221-0/+1
|
* SCons: Make glibc check a function of --release flag, not presence of ↵Andy Schwerin2013-02-222-2/+9
| | | | | | | | | | | | --s3dist on command line. Release builds of mongo on Linux are not supposed to depend on symbols from GLIBC2.4. Prior to this patch, we enforced this by adding a post build option to Program steps on linux when s3dist appeared on the command line, unless suppressed by --no-glibc-check. In this patch, we instead add the post build option if --release is set on the command line, unless suppressed by the --no-glibc-check. Without this change, the s3dist rule can cause unnecessary relinking of the programs to be archived and pushed.
* SERVER-8670 wait for deleter to finish before calculating hashesEric Milkie2013-02-221-0/+1
|
* fix typoEric Milkie2013-02-221-1/+1
|
* SERVER-8671 do not run currentop.js in parallel suite until fixes can be madeEric Milkie2013-02-221-0/+1
|
* buildbot autosplit_heuristics.js add more padding for stochastic retry intervalGreg Studer2013-02-211-1/+3
|
* SERVER-8650 comment out further parts of testEric Milkie2013-02-211-6/+6
|
* SERVER-8650 Comment out new test pending fixIan Whalen2013-02-211-5/+6
|
* SERVER-8640 Took $setOnInsert test out of the sharding passthrough suite.Alberto Lerner2013-02-211-0/+3
|
* SERVER-8612 alternative select() implementation for WindowsEric Milkie2013-02-152-7/+200
| | | | | | | | On Windows, socket() can return any SOCKET value, not just a small, incrementing number. This makes it very hard to use select() since you need to allocate an enormous fd_set to cover all the possible SOCKET values. Instead, I've rewritten the listen/accept logic on Windows to avoid calling select(); instead, we make use of Winsock2 native API calls.
* Visual Studio -- exclude SpiderMonkey files in mongo V8 Debug buildsTad Marshall2013-02-212-3/+28
|
* SERVER-8648 add explicit timeout to checkStatus connectionGreg Studer2013-02-211-1/+1
|
* SERVER-8418 Enable usePowerOf2Sizes on collection upon text index creation.Andy Schwerin2013-02-215-0/+31
| | | | Second take. Fixes original problem, when indexes had a NULL type.
* SERVER-8647: don't fail when loading invalid stored JSBen Becker2013-02-212-3/+11
|
* SERVER-8640 Fixed $setOnInsert over a field created by the query portion of ↵Alberto Lerner2013-02-212-6/+25
| | | | an upsert.
* SERVER-8601 end line on waiting for distributed lock messageGreg Studer2013-02-201-1/+1
|
* SERVER-8635: don't attempt to cleanup mr after an errorBen Becker2013-02-201-0/+12
|
* SERVER-8574 contact all config servers before waiting for distributed lock ↵Greg Studer2013-02-201-0/+45
| | | | on config upgrade
* SERVER-8513 Fixed $setOnInsert to allow in-place update if it's a no-op.Alberto Lerner2013-02-204-30/+143
|
* SERVER-8637: don't reuse scope if an exception was thrownBen Becker2013-02-201-1/+1
|
* Revert "SERVER-8418 Enable usePowerOf2Sizes on collection upon text index ↵Eric Milkie2013-02-205-30/+0
| | | | | | | creation." This reverts commit 6ddad8c0d34bdd0e1c08a85cf35b1fd0f0f235e2. Breaking slowNightly/32bit.js
* SERVER-8418 Enable usePowerOf2Sizes on collection upon text index creation.Jason Rassi2013-02-205-0/+30
| | | | Signed-off-by: Andy Schwerin <schwerin@10gen.com>
* SERVER-8531 Don't print startupWarnings when server is running with authSpencer T Brody2013-02-201-0/+3
|
* SERVER-8635: fix crash caused by executing mr::State::~State() after JS ↵Ben Becker2013-02-201-13/+0
| | | | exception
* SERVER-8634: make _v8_function read-onlyBen Becker2013-02-201-1/+1
|
* SERVER-8596 cleanup upgradeId field after upgradegregs2013-02-201-2/+2
|
* SERVER-8618: clean up shell and file exception messagesBen Becker2013-02-201-3/+2
|
* Visual Studio -- add src/ipch directory to .gitignoreTad Marshall2013-02-201-0/+1
|
* Disable max_message_size.js test on 32bit systemsMathias Stearn2013-02-201-0/+5
| | | | SERVER-8529
* SERVER-8623 Don't allow renameCollection to bypass auth checks on system ↵Spencer T Brody2013-02-203-13/+99
| | | | namespaces
* Visual Studio -- rename project and solution filesTad Marshall2013-02-2032-22878/+23093
| | | | | | | | | | | | | All of the project and solution files for building the SpiderMonkey version of MongoDB executables have been renamed to their old names plus "_sm", and all of the previously "_v8" tagged files are renamed to their base names (e.g. mongod_v8.sln is renamed to mongod.sln). This is consistent with V8 being the default JavaScript engine, with an option to build a SpiderMonkey version. Also added new "master" solution files as src/mongodb.sln to build components for the V8 version and src/mongodb_sm.sln to build for SpiderMonkey. Please delete existing target build directories (e.g. src/mongo/db/x64/Debug) before rebuilding with the updated project files.
* SERVER-8618: fix windows buildBen Becker2013-02-201-7/+7
|
* SERVER-8625 Allow dbAdmins to view index definitionsSpencer T Brody2013-02-203-0/+29
|
* SERVER-8618: add context to JS exception messagesBen Becker2013-02-209-41/+134
|
* SERVER-8613 Correctly authenticate tools run from under test with ↵Andy Schwerin2013-02-201-4/+10
| | | | | | | | runMongoProgram in the shell. Now that the tools do not all engage in their own ad hoc authentication database selection process, it is necessary to have runMongoProgram explicilty identify the database with the test user credentials when running auth passthrough tests.
* Tests for SERVER-4161. Covered index query for geo and hashed indexesSridhar Nanjundeswaran2013-02-203-6/+65
| | | | Signed-off-by: Ian Whalen <ian.whalen@gmail.com>
* SERVER-8630 Log the actual error message when getnonce failsSpencer T Brody2013-02-201-1/+1
|
* Visual Studio -- add JavaScript source code to all projectsTad Marshall2013-02-2016-67/+758
| | | | | | | | | Since the JavaScript source files are included in all projects, it is inconvenient to have them listed in only the mongo (shell) project, so add them to all other projects. Split the list into a common (all projects) group and a shell-only group. Mark the unused (in a particular project) ones as not-included. Add missing assert.js and types.js files to the lists.
* SERVER-8217 Write test for id loggingRandolph Tan2013-02-192-2/+2
| | | | Make tests allocate port dynamically
* SERVER-8247 Add ES5 functions to autocomplete listsTad Marshall2013-02-191-9/+10
|
* Fix jstests/auth/auth_helpers.js for enterprise build.Andy Schwerin2013-02-191-7/+4
| | | | | saslAuthenticate is no longer a method on the shell. This test was breaking on enterprise builders, as a result.
* SERVER-8301 fix handling of server info on FreeBSDEric Milkie2013-02-191-13/+13
| | | | | On FreeBSD 9, the number of cpus is only 4 bytes, but we are reading into an 8-byte value. I relaxed the size check and also fixed up the error printing when something does go wrong.
* SERVER-8335 test for autosplit heuristicsGreg Studer2013-02-181-0/+72
|
* SERVER-8597 Fix AuthorizationManager unit test now that invalid roles no ↵Spencer T Brody2013-02-161-10/+23
| | | | longer prevent privilege acquisition