summaryrefslogtreecommitdiff
path: root/src/mongo/db/ops/insert.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/ops/insert.cpp')
-rw-r--r--src/mongo/db/ops/insert.cpp14
1 files changed, 6 insertions, 8 deletions
diff --git a/src/mongo/db/ops/insert.cpp b/src/mongo/db/ops/insert.cpp
index d48b4c104db..d0b9debab28 100644
--- a/src/mongo/db/ops/insert.cpp
+++ b/src/mongo/db/ops/insert.cpp
@@ -58,9 +58,9 @@ Status validateDepth(const BSONObj& obj) {
// We're exactly at the limit, so descending to the next level would exceed
// the maximum depth.
return {ErrorCodes::Overflow,
- str::stream() << "cannot insert document because it exceeds "
- << BSONDepth::getMaxDepthForUserStorage()
- << " levels of nesting"};
+ str::stream()
+ << "cannot insert document because it exceeds "
+ << BSONDepth::getMaxDepthForUserStorage() << " levels of nesting"};
}
frames.emplace_back(elem.embeddedObject());
}
@@ -78,10 +78,8 @@ StatusWith<BSONObj> fixDocumentForInsert(ServiceContext* service, const BSONObj&
if (doc.objsize() > BSONObjMaxUserSize)
return StatusWith<BSONObj>(ErrorCodes::BadValue,
str::stream() << "object to insert too large"
- << ". size in bytes: "
- << doc.objsize()
- << ", max size: "
- << BSONObjMaxUserSize);
+ << ". size in bytes: " << doc.objsize()
+ << ", max size: " << BSONObjMaxUserSize);
auto depthStatus = validateDepth(doc);
if (!depthStatus.isOK()) {
@@ -266,4 +264,4 @@ Status userAllowedCreateNS(StringData db, StringData coll) {
return Status::OK();
}
-}
+} // namespace mongo