Compare commits

...

2 Commits
v2.4 ... v2.4.1

Author SHA1 Message Date
Eliot Horowitz
1560959e9c BUMP 2.4.1 2013-03-22 15:55:25 -04:00
Eliot Horowitz
2308e25ae4 SERVER-9087: fix initial sync ignoring updates during index creation 2013-03-22 15:53:17 -04:00
5 changed files with 11 additions and 4 deletions

6
debian/changelog vendored
View File

@@ -1,3 +1,9 @@
mongodb (2.4.1) unstable; urgency=low
* see http://docs.mongodb.org/manual/release-notes/2.4/
-- Richard Kreuter <richard@10gen.com> Fri, 23 Mar 2013 16:56:28 -0500
mongodb (2.4.0) unstable; urgency=low
* see http://docs.mongodb.org/manual/release-notes/2.4/

View File

@@ -3,7 +3,7 @@
#---------------------------------------------------------------------------
DOXYFILE_ENCODING = UTF-8
PROJECT_NAME = MongoDB
PROJECT_NUMBER = 2.4.0
PROJECT_NUMBER = 2.4.1
OUTPUT_DIRECTORY = docs/doxygen
CREATE_SUBDIRS = NO
OUTPUT_LANGUAGE = English

View File

@@ -1,7 +1,7 @@
Name: mongo-10gen
Conflicts: mongo, mongo-10gen-unstable
Obsoletes: mongo-stable
Version: 2.4.0
Version: 2.4.1
Release: mongodb_1%{?dist}
Summary: mongo client shell and tools
License: AGPL 3.0

View File

@@ -389,6 +389,7 @@ namespace mongo {
mayInterrupt( opts.mayBeInterrupted );
dbtempreleaseif r( opts.mayYield );
#if 0
// fetch index info
auto_ptr<DBClientCursor> cur = _conn->query(idxns.c_str(), BSONObj(), 0, 0, 0,
opts.slaveOk ? QueryOption_SlaveOk : 0 );
@@ -415,7 +416,7 @@ namespace mongo {
_sortersForNS[idxEntry["ns"].String()].insert(make_pair(idxEntry["name"].String(),
details));
}
#endif
// just using exhaust for collection copying right now
// todo: if snapshot (bool param to this func) is true, we need to snapshot this query?

View File

@@ -47,7 +47,7 @@ namespace mongo {
* 1.2.3-rc4-pre-
* If you really need to do something else you'll need to fix _versionArray()
*/
const char versionString[] = "2.4.0";
const char versionString[] = "2.4.1";
// See unit test for example outputs
BSONArray toVersionArray(const char* version){