summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy Schwerin <schwerin@mongodb.com>2014-03-19 17:04:11 -0400
committerAndy Schwerin <schwerin@mongodb.com>2014-03-19 17:04:11 -0400
commit11e8a1d1b7d58b710a8a6f59e507dafcec01f247 (patch)
treec89456e448aaca9e5b0fa7d903008959eb28f012
parent2758187dd41024a8f93fddc7edfc223eccf4a1ce (diff)
downloadmongo-11e8a1d1b7d58b710a8a6f59e507dafcec01f247.tar.gz
SERVER-13163/SERVER-13165 Assign fassert codes.
-rw-r--r--src/mongo/db/commands/write_commands/batch_executor.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/commands/write_commands/batch_executor.cpp b/src/mongo/db/commands/write_commands/batch_executor.cpp
index 8e1448eaa72..43cb4399186 100644
--- a/src/mongo/db/commands/write_commands/batch_executor.cpp
+++ b/src/mongo/db/commands/write_commands/batch_executor.cpp
@@ -871,7 +871,7 @@ namespace mongo {
invariant(!result.getError());
continue;
}
- fassertFailed(0);
+ fassertFailed(17429);
}
// END CURRENT OP
@@ -983,7 +983,7 @@ namespace mongo {
pfe.touch();
continue; // Try the operation again.
}
- fassertFailed(0);
+ fassertFailed(17430);
}
// Errors release the write lock, as a matter of policy.