summaryrefslogtreecommitdiff
path: root/src/mongo/db/repl/resync.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/repl/resync.cpp')
-rw-r--r--src/mongo/db/repl/resync.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/repl/resync.cpp b/src/mongo/db/repl/resync.cpp
index 8022dc3fee6..68f85a7af0e 100644
--- a/src/mongo/db/repl/resync.cpp
+++ b/src/mongo/db/repl/resync.cpp
@@ -48,7 +48,7 @@ constexpr StringData kWaitFieldName = "wait"_sd;
} // namespace
// operator requested resynchronization of replication (on a slave or secondary). {resync: 1}
-class CmdResync : public Command {
+class CmdResync : public BasicCommand {
public:
virtual bool slaveOk() const {
return true;
@@ -71,7 +71,7 @@ public:
h << "resync (from scratch) a stale slave or replica set secondary node.\n";
}
- CmdResync() : Command(kResyncFieldName) {}
+ CmdResync() : BasicCommand(kResyncFieldName) {}
virtual bool run(OperationContext* opCtx,
const string& dbname,
const BSONObj& cmdObj,