summaryrefslogtreecommitdiff
path: root/src/mongo/db/commands/authentication_commands.h
diff options
context:
space:
mode:
authorBilly Donahue <billy.donahue@mongodb.com>2018-01-30 19:40:46 -0500
committerBilly Donahue <billy.donahue@mongodb.com>2018-01-31 14:04:35 -0500
commitbe24b0323d3f2d424d9e22337f4221d39001ac31 (patch)
tree98577c05a24da852ec518699c4d039da5bbd7329 /src/mongo/db/commands/authentication_commands.h
parent0322da76ec976d240191b1ca8f70c2c732f9753a (diff)
downloadmongo-be24b0323d3f2d424d9e22337f4221d39001ac31.tar.gz
SERVER-32958 slaveOk,slaveOverrideOk replacement
declare read_preference dep. update service_entry_opint_embedded
Diffstat (limited to 'src/mongo/db/commands/authentication_commands.h')
-rw-r--r--src/mongo/db/commands/authentication_commands.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/commands/authentication_commands.h b/src/mongo/db/commands/authentication_commands.h
index a5123fb932b..5e886827256 100644
--- a/src/mongo/db/commands/authentication_commands.h
+++ b/src/mongo/db/commands/authentication_commands.h
@@ -40,8 +40,8 @@ class CmdAuthenticate : public BasicCommand {
public:
static void disableAuthMechanism(std::string authMechanism);
- virtual bool slaveOk() const {
- return true;
+ AllowedOnSecondary secondaryAllowed() const override {
+ return AllowedOnSecondary::kAlways;
}
std::string help() const override {
return "internal";