summaryrefslogtreecommitdiff
path: root/src/mongo/db/background.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/background.cpp')
-rw-r--r--src/mongo/db/background.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mongo/db/background.cpp b/src/mongo/db/background.cpp
index e3869b1bd6b..18af0509631 100644
--- a/src/mongo/db/background.cpp
+++ b/src/mongo/db/background.cpp
@@ -133,7 +133,8 @@ void BackgroundOperation::assertNoBgOpInProgForDb(StringData db) {
uassert(ErrorCodes::BackgroundOperationInProgressForDatabase,
mongoutils::str::stream()
<< "cannot perform operation: a background operation is currently running for "
- "database " << db,
+ "database "
+ << db,
!inProgForDb(db));
}
@@ -141,7 +142,8 @@ void BackgroundOperation::assertNoBgOpInProgForNs(StringData ns) {
uassert(ErrorCodes::BackgroundOperationInProgressForNamespace,
mongoutils::str::stream()
<< "cannot perform operation: a background operation is currently running for "
- "collection " << ns,
+ "collection "
+ << ns,
!inProgForNs(ns));
}