summaryrefslogtreecommitdiff
path: root/src/mongo/db/signed_logical_time.cpp
diff options
context:
space:
mode:
authorRandolph Tan <randolph@10gen.com>2017-02-13 11:22:40 -0500
committerRandolph Tan <randolph@10gen.com>2017-02-27 13:15:43 -0500
commit2e68e8bf05fd7c6cb94b82fcfd0fe237c9f7ccb8 (patch)
tree2374dc732dbe4f1f59b63e2680e205533fecf976 /src/mongo/db/signed_logical_time.cpp
parenta4e1443629b733c7c0fd44dddcd78e884da848bd (diff)
downloadmongo-2e68e8bf05fd7c6cb94b82fcfd0fe237c9f7ccb8.tar.gz
SERVER-27748 Implement LogicalTimeMetadata
Diffstat (limited to 'src/mongo/db/signed_logical_time.cpp')
-rw-r--r--src/mongo/db/signed_logical_time.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/signed_logical_time.cpp b/src/mongo/db/signed_logical_time.cpp
index bcfb89f027a..16404950ac5 100644
--- a/src/mongo/db/signed_logical_time.cpp
+++ b/src/mongo/db/signed_logical_time.cpp
@@ -34,7 +34,7 @@ namespace mongo {
std::string SignedLogicalTime::toString() const {
StringBuilder buf;
- buf << _time.toString() << "|" << _proof;
+ buf << _time.toString() << "|" << _proof.toString();
return buf.str();
}