summaryrefslogtreecommitdiff
path: root/src/mongo/db/pipeline/plan_executor_pipeline.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/pipeline/plan_executor_pipeline.cpp')
-rw-r--r--src/mongo/db/pipeline/plan_executor_pipeline.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/pipeline/plan_executor_pipeline.cpp b/src/mongo/db/pipeline/plan_executor_pipeline.cpp
index d7f2cc76225..67ed5841fd4 100644
--- a/src/mongo/db/pipeline/plan_executor_pipeline.cpp
+++ b/src/mongo/db/pipeline/plan_executor_pipeline.cpp
@@ -47,7 +47,7 @@ PlanExecutorPipeline::PlanExecutorPipeline(boost::intrusive_ptr<ExpressionContex
Microseconds timeElapsedPlanning)
: _expCtx(std::move(expCtx)),
_pipeline(std::move(pipeline)),
- _planExplainer{_pipeline.get(), timeElapsedPlanning},
+ _planExplainer{_pipeline.get(), timeElapsedPlanning, _expCtx->opCtx->getTelemetryKey()},
_resumableScanType{resumableScanType} {
// Pipeline plan executors must always have an ExpressionContext.
invariant(_expCtx);