summaryrefslogtreecommitdiff
path: root/src/mongo/db/pipeline/document_source_out.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/pipeline/document_source_out.cpp')
-rw-r--r--src/mongo/db/pipeline/document_source_out.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/mongo/db/pipeline/document_source_out.cpp b/src/mongo/db/pipeline/document_source_out.cpp
index 148f7f4fc7e..252d894ba04 100644
--- a/src/mongo/db/pipeline/document_source_out.cpp
+++ b/src/mongo/db/pipeline/document_source_out.cpp
@@ -87,7 +87,8 @@ void DocumentSourceOut::prepTempCollection() {
bool ok = conn->runCommand(_outputNs.db().toString(), cmd.done(), info);
uassert(16994,
str::stream() << "failed to create temporary $out collection '" << _tempNs.ns()
- << "': " << info.toString(),
+ << "': "
+ << info.toString(),
ok);
}
@@ -103,7 +104,10 @@ void DocumentSourceOut::prepTempCollection() {
BSONObj err = conn->getLastErrorDetailed();
uassert(16995,
str::stream() << "copying index for $out failed."
- << " index: " << indexBson << " error: " << err,
+ << " index: "
+ << indexBson
+ << " error: "
+ << err,
DBClientWithCommands::getLastErrorString(err).empty());
}
}