summaryrefslogtreecommitdiff
path: root/src/mongo/s/commands/cluster_index_filter_cmd.cpp
diff options
context:
space:
mode:
authorMathias Stearn <mathias@10gen.com>2017-06-22 15:25:37 -0400
committerMathias Stearn <mathias@10gen.com>2017-07-13 16:53:12 -0400
commit1f21d889f89cf1338ff198264d63b029314eef7a (patch)
tree741021d15b7b2149b28c8eb84369350d8c9a34d8 /src/mongo/s/commands/cluster_index_filter_cmd.cpp
parenta6cc94d141f13feff33178a769c81282c7bc0170 (diff)
downloadmongo-1f21d889f89cf1338ff198264d63b029314eef7a.tar.gz
SERVER-29731 convert all direct subclasses of Command to BasicCommand
Diffstat (limited to 'src/mongo/s/commands/cluster_index_filter_cmd.cpp')
-rw-r--r--src/mongo/s/commands/cluster_index_filter_cmd.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/s/commands/cluster_index_filter_cmd.cpp b/src/mongo/s/commands/cluster_index_filter_cmd.cpp
index 7b7ef05ef22..9d114bccdba 100644
--- a/src/mongo/s/commands/cluster_index_filter_cmd.cpp
+++ b/src/mongo/s/commands/cluster_index_filter_cmd.cpp
@@ -48,7 +48,7 @@ namespace {
* Cluster index filter commands don't do much more than
* forwarding the commands to all shards and combining the results.
*/
-class ClusterIndexFilterCmd : public Command {
+class ClusterIndexFilterCmd : public BasicCommand {
MONGO_DISALLOW_COPYING(ClusterIndexFilterCmd);
public:
@@ -57,7 +57,7 @@ public:
* "helpText", and will require privilege "actionType" to run.
*/
ClusterIndexFilterCmd(const std::string& name, const std::string& helpText)
- : Command(name), _helpText(helpText) {}
+ : BasicCommand(name), _helpText(helpText) {}
virtual ~ClusterIndexFilterCmd() {}