summaryrefslogtreecommitdiff
path: root/src/mongo/db/namespace_string.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/namespace_string.cpp')
-rw-r--r--src/mongo/db/namespace_string.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/namespace_string.cpp b/src/mongo/db/namespace_string.cpp
index 9a98e3f3dd5..4f4967b10c3 100644
--- a/src/mongo/db/namespace_string.cpp
+++ b/src/mongo/db/namespace_string.cpp
@@ -193,8 +193,8 @@ StatusWith<repl::OpTime> NamespaceString::getDropPendingNamespaceOpTime() const
long long term;
status = mongo::NumberParser{}(opTimeStr.substr(termSeparatorIndex + 1), &term);
if (!status.isOK()) {
- return status.withContext(str::stream() << "Invalid term in drop-pending namespace: "
- << _ns);
+ return status.withContext(str::stream()
+ << "Invalid term in drop-pending namespace: " << _ns);
}
return repl::OpTime(Timestamp(Seconds(seconds), increment), term);