summaryrefslogtreecommitdiff
path: root/src/mongo/s/commands/cluster_pipeline_cmd.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/s/commands/cluster_pipeline_cmd.cpp')
-rw-r--r--src/mongo/s/commands/cluster_pipeline_cmd.cpp13
1 files changed, 3 insertions, 10 deletions
diff --git a/src/mongo/s/commands/cluster_pipeline_cmd.cpp b/src/mongo/s/commands/cluster_pipeline_cmd.cpp
index 21571bd6e4f..460363bb1be 100644
--- a/src/mongo/s/commands/cluster_pipeline_cmd.cpp
+++ b/src/mongo/s/commands/cluster_pipeline_cmd.cpp
@@ -76,7 +76,6 @@ public:
virtual bool run(OperationContext* opCtx,
const std::string& dbname,
BSONObj& cmdObj,
- int options,
std::string& errmsg,
BSONObjBuilder& result) {
const NamespaceString nss(parseNsCollectionRequired(dbname, cmdObj));
@@ -89,8 +88,8 @@ public:
ClusterAggregate::Namespaces nsStruct;
nsStruct.requestedNss = nss;
nsStruct.executionNss = std::move(nss);
- auto status = ClusterAggregate::runAggregate(
- opCtx, nsStruct, request.getValue(), cmdObj, options, &result);
+ auto status =
+ ClusterAggregate::runAggregate(opCtx, nsStruct, request.getValue(), cmdObj, &result);
appendCommandStatus(result, status);
return status.isOK();
}
@@ -118,17 +117,11 @@ public:
BSON("$readPreference" << readPrefObj));
}
- int options = 0;
- if (serverSelectionMetadata.isSecondaryOk()) {
- options |= QueryOption_SlaveOk;
- }
-
ClusterAggregate::Namespaces nsStruct;
nsStruct.requestedNss = nss;
nsStruct.executionNss = std::move(nss);
- return ClusterAggregate::runAggregate(
- opCtx, nsStruct, request.getValue(), cmdObj, options, out);
+ return ClusterAggregate::runAggregate(opCtx, nsStruct, request.getValue(), cmdObj, out);
}
} clusterPipelineCmd;