summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Benvenuto <mark.benvenuto@mongodb.com>2015-06-16 18:53:10 -0400
committerRamon Fernandez <ramon.fernandez@mongodb.com>2015-06-25 16:23:56 -0400
commit3f1022ce0b72d7445122c71bc0541dd809b54548 (patch)
tree350f3ff889a5284df24e2613d2e2ce530771b5ae
parent2765501a26ceae49823bc8ed82b92421d1b81c39 (diff)
downloadmongo-3f1022ce0b72d7445122c71bc0541dd809b54548.tar.gz
SERVER-18979: Duplicate uassert & fassert codes
(cherry picked from commit 8289f5481bff0da371d66191e40d611b12009cc5)
-rw-r--r--src/mongo/db/repl/replica_set_config.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/repl/replica_set_config.cpp b/src/mongo/db/repl/replica_set_config.cpp
index 85c161ccab0..6b4aedd1601 100644
--- a/src/mongo/db/repl/replica_set_config.cpp
+++ b/src/mongo/db/repl/replica_set_config.cpp
@@ -477,7 +477,7 @@ namespace {
else if (status != ErrorCodes::NoSuchKey) {
// NoSuchKey means we have no $voter-tagged nodes in this config;
// other errors are unexpected.
- fassert(28528, status);
+ fassert(28693, status);
}
// $stepDownCheck: one electable node plus ourselves
@@ -491,7 +491,7 @@ namespace {
else if (status != ErrorCodes::NoSuchKey) {
// NoSuchKey means we have no $electable-tagged nodes in this config;
// other errors are unexpected
- fassert(28529, status);
+ fassert(28694, status);
}
}