summaryrefslogtreecommitdiff
path: root/src/mongo/db/read_concern.cpp
diff options
context:
space:
mode:
authorMisha Tyulenev <misha@mongodb.com>2017-12-15 13:48:58 -0500
committerMisha Tyulenev <misha@mongodb.com>2017-12-15 15:54:03 -0500
commit36874a480ea4e2be33af298777a8d6824b7b974e (patch)
treedd7f7fdb415c76710c52c804a9168ed43abbb29f /src/mongo/db/read_concern.cpp
parentb1ae796faf5f262cd658f59a59d18f8c3eb0d4ee (diff)
downloadmongo-36874a480ea4e2be33af298777a8d6824b7b974e.tar.gz
SERVER-31916 wait for clusterTime on mongo connection
Diffstat (limited to 'src/mongo/db/read_concern.cpp')
-rw-r--r--src/mongo/db/read_concern.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/read_concern.cpp b/src/mongo/db/read_concern.cpp
index afae793f6e8..0d3dd1baf82 100644
--- a/src/mongo/db/read_concern.cpp
+++ b/src/mongo/db/read_concern.cpp
@@ -148,7 +148,7 @@ Status makeNoopWriteIfNeeded(OperationContext* opCtx, LogicalTime clusterTime) {
if (!remainingAttempts--) {
std::stringstream ss;
- ss << "Requested clusterTime" << clusterTime.toString()
+ ss << "Requested clusterTime " << clusterTime.toString()
<< " is greater than the last primary OpTime: " << lastAppliedOpTime.toString()
<< " no retries left";
return Status(ErrorCodes::InternalError, ss.str());