summaryrefslogtreecommitdiff
path: root/src/mongo/db/commands/copydb_start_commands.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/commands/copydb_start_commands.cpp')
-rw-r--r--src/mongo/db/commands/copydb_start_commands.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mongo/db/commands/copydb_start_commands.cpp b/src/mongo/db/commands/copydb_start_commands.cpp
index e319ad03f7e..fbb3d485180 100644
--- a/src/mongo/db/commands/copydb_start_commands.cpp
+++ b/src/mongo/db/commands/copydb_start_commands.cpp
@@ -68,9 +68,9 @@ std::unique_ptr<DBClientBase>& CopyDbAuthConnection::forClient(Client* client) {
* nonce from the source of a "copydb" operation for authentication purposes. See the
* description of the "copydb" command below.
*/
-class CmdCopyDbGetNonce : public Command {
+class CmdCopyDbGetNonce : public BasicCommand {
public:
- CmdCopyDbGetNonce() : Command("copydbgetnonce") {}
+ CmdCopyDbGetNonce() : BasicCommand("copydbgetnonce") {}
virtual bool adminOnly() const {
return true;
@@ -140,9 +140,9 @@ public:
* Run against the mongod that is the intended target for the "copydb" command. Used to
* initialize a SASL auth session for a "copydb" operation for authentication purposes.
*/
-class CmdCopyDbSaslStart : public Command {
+class CmdCopyDbSaslStart : public BasicCommand {
public:
- CmdCopyDbSaslStart() : Command("copydbsaslstart") {}
+ CmdCopyDbSaslStart() : BasicCommand("copydbsaslstart") {}
virtual bool adminOnly() const {
return true;