summaryrefslogtreecommitdiff
path: root/src/mongo/db/s/resharding/resharding_oplog_fetcher_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/s/resharding/resharding_oplog_fetcher_test.cpp')
-rw-r--r--src/mongo/db/s/resharding/resharding_oplog_fetcher_test.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mongo/db/s/resharding/resharding_oplog_fetcher_test.cpp b/src/mongo/db/s/resharding/resharding_oplog_fetcher_test.cpp
index 6d66874a296..958ac588789 100644
--- a/src/mongo/db/s/resharding/resharding_oplog_fetcher_test.cpp
+++ b/src/mongo/db/s/resharding/resharding_oplog_fetcher_test.cpp
@@ -98,7 +98,8 @@ public:
// Initialize ReshardingMetrics to a recipient state compatible with fetching.
_metrics = std::make_unique<ReshardingMetrics>(_svcCtx);
- _metrics->onStart(_svcCtx->getFastClockSource()->now());
+ _metrics->onStart(ReshardingMetrics::Role::kRecipient,
+ _svcCtx->getFastClockSource()->now());
_metrics->setRecipientState(RecipientStateEnum::kCloning);
for (const auto& shardId : kTwoShardIdList) {
@@ -314,8 +315,7 @@ public:
long long metricsFetchedCount() const {
BSONObjBuilder bob;
- _metrics->serializeCurrentOpMetrics(&bob,
- ReshardingMetrics::ReporterOptions::Role::kRecipient);
+ _metrics->serializeCurrentOpMetrics(&bob, ReshardingMetrics::Role::kRecipient);
return bob.obj()["oplogEntriesFetched"_sd].Long();
}