summaryrefslogtreecommitdiff
path: root/src/mongo/db/repl/resync.cpp
diff options
context:
space:
mode:
authorHenrik Edin <henrik.edin@mongodb.com>2018-02-12 05:41:53 -0500
committerHenrik Edin <henrik.edin@mongodb.com>2018-02-14 02:48:16 -0500
commite39598ae82e34f33f3ef29fd89801ce6cfb5270b (patch)
tree06672aa5e658859f5d233bdf53ad05d2392f8d4a /src/mongo/db/repl/resync.cpp
parent8dc33796371e1226bc2a53481e80cf0fd8142371 (diff)
downloadmongo-e39598ae82e34f33f3ef29fd89801ce6cfb5270b.tar.gz
SERVER-33286 Provide service context in Command::secondaryAllowed to allow getting interfaces without using global get function.
Diffstat (limited to 'src/mongo/db/repl/resync.cpp')
-rw-r--r--src/mongo/db/repl/resync.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/repl/resync.cpp b/src/mongo/db/repl/resync.cpp
index debaed421ce..cff397f8589 100644
--- a/src/mongo/db/repl/resync.cpp
+++ b/src/mongo/db/repl/resync.cpp
@@ -49,7 +49,7 @@ constexpr StringData kWaitFieldName = "wait"_sd;
// operator requested resynchronization of replication (on a slave or secondary). {resync: 1}
class CmdResync : public ErrmsgCommandDeprecated {
public:
- AllowedOnSecondary secondaryAllowed() const override {
+ AllowedOnSecondary secondaryAllowed(ServiceContext*) const override {
return AllowedOnSecondary::kAlways;
}
virtual bool adminOnly() const {