diff options
author | Mathias Stearn <mathias@10gen.com> | 2017-05-17 14:09:03 -0400 |
---|---|---|
committer | Mathias Stearn <mathias@10gen.com> | 2017-05-17 19:29:36 -0400 |
commit | 0e3b3900d5ac67864b90ef83abd484746945a495 (patch) | |
tree | d3d241d7b6200bf827bef5203b450e39e8a99a4f /src/mongo/s/commands/cluster_map_reduce_cmd.cpp | |
parent | a5bfc0ee7d76e02f050eb24735d25d71fb111db8 (diff) | |
download | mongo-0e3b3900d5ac67864b90ef83abd484746945a495.tar.gz |
SERVER-29249 Remove Command::_webUi member and constructor argument
Diffstat (limited to 'src/mongo/s/commands/cluster_map_reduce_cmd.cpp')
-rw-r--r-- | src/mongo/s/commands/cluster_map_reduce_cmd.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/s/commands/cluster_map_reduce_cmd.cpp b/src/mongo/s/commands/cluster_map_reduce_cmd.cpp index b424ddc6f42..8a7ab425ae1 100644 --- a/src/mongo/s/commands/cluster_map_reduce_cmd.cpp +++ b/src/mongo/s/commands/cluster_map_reduce_cmd.cpp @@ -148,7 +148,7 @@ BSONObj fixForShards(const BSONObj& orig, */ class MRCmd : public Command { public: - MRCmd() : Command("mapReduce", false, "mapreduce") {} + MRCmd() : Command("mapReduce", "mapreduce") {} bool slaveOk() const override { return true; |