summaryrefslogtreecommitdiff
path: root/src/mongo/db/exec
diff options
context:
space:
mode:
authorTess Avitabile <tess.avitabile@mongodb.com>2016-02-10 11:12:32 -0500
committerTess Avitabile <tess.avitabile@mongodb.com>2016-02-10 11:12:32 -0500
commit0df1eabb730f54c72dd545fc2b5f5c7f630e7f3c (patch)
tree85661ec89d7ddba4c8a9843017fa77cf62790922 /src/mongo/db/exec
parent2eea3f09aea9c92df9aa0d4e47840869bf04d7b8 (diff)
downloadmongo-0df1eabb730f54c72dd545fc2b5f5c7f630e7f3c.tar.gz
SERVER-14662 fix duplicate uassert error code
Diffstat (limited to 'src/mongo/db/exec')
-rw-r--r--src/mongo/db/exec/update.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/exec/update.cpp b/src/mongo/db/exec/update.cpp
index 24aceedfb8f..f3d2264e42e 100644
--- a/src/mongo/db/exec/update.cpp
+++ b/src/mongo/db/exec/update.cpp
@@ -475,7 +475,7 @@ BSONObj UpdateStage::transformAndUpdate(const Snapshotted<BSONObj>& oldObj, Reco
// If we have matched more than one array position, we cannot perform a positional update
// operation.
- uassert(34411, "ambiguous positional update operation", matchDetails.isValid());
+ uassert(34412, "ambiguous positional update operation", matchDetails.isValid());
string matchedField;
if (matchDetails.hasElemMatchKey())