summaryrefslogtreecommitdiff
path: root/src/mongo/s/sharding_test_fixture.cpp
diff options
context:
space:
mode:
authorWaley Chen <waleycz@gmail.com>2016-03-29 17:41:59 -0400
committerWaley Chen <waleycz@gmail.com>2016-03-30 00:15:02 -0400
commit58a490d466b31f70384b7173aa50fb32ac487563 (patch)
treec3d836d0305ac569639388828bb98bc2a8076be5 /src/mongo/s/sharding_test_fixture.cpp
parent2cc6e175738a5e18635c28f2bd68c1d6f679e0fc (diff)
downloadmongo-58a490d466b31f70384b7173aa50fb32ac487563.tar.gz
SERVER-23243 Extract time-keeping from Listener
Step 1: getClockSource() -> getPreciseClockSource()
Diffstat (limited to 'src/mongo/s/sharding_test_fixture.cpp')
-rw-r--r--src/mongo/s/sharding_test_fixture.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/s/sharding_test_fixture.cpp b/src/mongo/s/sharding_test_fixture.cpp
index c5bc4158f7d..9af49ce4d8e 100644
--- a/src/mongo/s/sharding_test_fixture.cpp
+++ b/src/mongo/s/sharding_test_fixture.cpp
@@ -133,7 +133,7 @@ void ShardingTestFixture::setUp() {
// from there until we get rid of it.
grid.init(std::move(cm),
std::move(shardRegistry),
- stdx::make_unique<ClusterCursorManager>(_service->getClockSource()));
+ stdx::make_unique<ClusterCursorManager>(_service->getPreciseClockSource()));
}
void ShardingTestFixture::tearDown() {