summaryrefslogtreecommitdiff
path: root/src/mongo/s/commands/cluster_add_shard_cmd.cpp
diff options
context:
space:
mode:
authorMathias Stearn <mathias@10gen.com>2017-05-17 14:09:03 -0400
committerMathias Stearn <mathias@10gen.com>2017-05-17 19:29:36 -0400
commit0e3b3900d5ac67864b90ef83abd484746945a495 (patch)
treed3d241d7b6200bf827bef5203b450e39e8a99a4f /src/mongo/s/commands/cluster_add_shard_cmd.cpp
parenta5bfc0ee7d76e02f050eb24735d25d71fb111db8 (diff)
downloadmongo-0e3b3900d5ac67864b90ef83abd484746945a495.tar.gz
SERVER-29249 Remove Command::_webUi member and constructor argument
Diffstat (limited to 'src/mongo/s/commands/cluster_add_shard_cmd.cpp')
-rw-r--r--src/mongo/s/commands/cluster_add_shard_cmd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/s/commands/cluster_add_shard_cmd.cpp b/src/mongo/s/commands/cluster_add_shard_cmd.cpp
index dafc4b0ef30..15b20ae43e2 100644
--- a/src/mongo/s/commands/cluster_add_shard_cmd.cpp
+++ b/src/mongo/s/commands/cluster_add_shard_cmd.cpp
@@ -53,7 +53,7 @@ const char kShardAdded[] = "shardAdded";
class AddShardCmd : public Command {
public:
- AddShardCmd() : Command("addShard", false, "addshard") {}
+ AddShardCmd() : Command("addShard", "addshard") {}
virtual bool slaveOk() const {
return true;