summaryrefslogtreecommitdiff
path: root/src/mongo/db/logical_clock_test_fixture.cpp
diff options
context:
space:
mode:
authorRandolph Tan <randolph@10gen.com>2017-02-23 14:57:14 -0500
committerRandolph Tan <randolph@10gen.com>2017-03-07 17:12:01 -0500
commit43be7d92a003f075a5130b2eb38175a062d0729d (patch)
treebb751ca50470551a85fd2f36b85d21f22d7820e8 /src/mongo/db/logical_clock_test_fixture.cpp
parent07c73edf683342d91ba941dd2733ff9e9e6fa6c0 (diff)
downloadmongo-43be7d92a003f075a5130b2eb38175a062d0729d.tar.gz
SERVER-27749 Integrate LogicalTimeMetadata
Attach logical time metadata to all outgoing messages and process incoming logical time metadata in mongod
Diffstat (limited to 'src/mongo/db/logical_clock_test_fixture.cpp')
-rw-r--r--src/mongo/db/logical_clock_test_fixture.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mongo/db/logical_clock_test_fixture.cpp b/src/mongo/db/logical_clock_test_fixture.cpp
index b0001ebab90..618da867ee1 100644
--- a/src/mongo/db/logical_clock_test_fixture.cpp
+++ b/src/mongo/db/logical_clock_test_fixture.cpp
@@ -43,8 +43,7 @@ void LogicalClockTest::setUp() {
std::array<std::uint8_t, 20> tempKey = {};
TimeProofService::Key key(std::move(tempKey));
auto timeProofService = stdx::make_unique<TimeProofService>(std::move(key));
- auto logicalClock =
- stdx::make_unique<LogicalClock>(service, std::move(timeProofService), false);
+ auto logicalClock = stdx::make_unique<LogicalClock>(service, std::move(timeProofService));
LogicalClock::set(service, std::move(logicalClock));
}