summaryrefslogtreecommitdiff
path: root/src/mongo/db/commands/oplog_note.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/commands/oplog_note.cpp
parentb1ae796faf5f262cd658f59a59d18f8c3eb0d4ee (diff)
downloadmongo-36874a480ea4e2be33af298777a8d6824b7b974e.tar.gz
SERVER-31916 wait for clusterTime on mongo connection
Diffstat (limited to 'src/mongo/db/commands/oplog_note.cpp')
-rw-r--r--src/mongo/db/commands/oplog_note.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/commands/oplog_note.cpp b/src/mongo/db/commands/oplog_note.cpp
index d3efa60ac50..914da7721ff 100644
--- a/src/mongo/db/commands/oplog_note.cpp
+++ b/src/mongo/db/commands/oplog_note.cpp
@@ -148,7 +148,7 @@ public:
result, _performNoopWrite(opCtx, dataElement.Obj(), "appendOpLogNote"));
} else {
std::stringstream ss;
- ss << "Requested maxClusterTime" << LogicalTime(maxClusterTime).toString()
+ ss << "Requested maxClusterTime " << LogicalTime(maxClusterTime).toString()
<< " is less or equal to the last primary OpTime: "
<< LogicalTime(lastAppliedOpTime).toString();
return appendCommandStatus(result, {ErrorCodes::StaleClusterTime, ss.str()});