Skip to content

Commit a8cd543

Browse files
committed
CXX-126 Backport rc1..rc2 changes
CXX-126 Backport relevant server repo changes applied between rc1 and rc2
1 parent 2da7a8e commit a8cd543

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

src/mongo/base/error_codes.err

+1
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ error_code("UnknownReplWriteConcern", 79)
8282
error_code("RoleDataInconsistent", 80)
8383
error_code("NoClientContext", 81)
8484
error_code("NoProgressMade", 82)
85+
error_code("RemoteResultsUnavailable", 83)
8586

8687
# Non-sequential error codes (for compatibility only)
8788
error_code("NotMaster", 10107) #this comes from assert_util.h

src/mongo/util/assert_util.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ namespace mongo {
3636
PrepareConfigsFailedCode = 13104, // uassert( 13104 )
3737
NotMasterOrSecondaryCode = 13436, // uassert( 13436 )
3838
NotMasterNoSlaveOkCode = 13435, // uassert( 13435 )
39-
NotMaster = 10107 // uassert( 10107 )
39+
NotMaster = 10107, // uassert( 10107 )
40+
IndexOptionsDiffer = 17427 // uassert( 17427 )
4041
};
4142

4243
class MONGO_CLIENT_API AssertionCount {

src/mongo/util/version.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ namespace mongo {
3131
* 1.2.3-rc4-pre-
3232
* If you really need to do something else you'll need to fix _versionArray()
3333
*/
34-
const char versionString[] = "2.6.0-rc1";
34+
const char versionString[] = "2.6.0-rc2";
3535

3636
// See unit test for example outputs
3737
BSONArray toVersionArray(const char* version){

0 commit comments

Comments
 (0)