summaryrefslogtreecommitdiff
path: root/src/mongo/s/commands/cluster_user_management_commands.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/s/commands/cluster_user_management_commands.cpp')
-rw-r--r--src/mongo/s/commands/cluster_user_management_commands.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/mongo/s/commands/cluster_user_management_commands.cpp b/src/mongo/s/commands/cluster_user_management_commands.cpp
index 02a87dfc9d2..a282cd57d1d 100644
--- a/src/mongo/s/commands/cluster_user_management_commands.cpp
+++ b/src/mongo/s/commands/cluster_user_management_commands.cpp
@@ -34,11 +34,11 @@
#include "mongo/base/status.h"
#include "mongo/bson/mutable/document.h"
+#include "mongo/client/dbclientinterface.h"
+#include "mongo/config.h"
#include "mongo/db/auth/authorization_manager.h"
#include "mongo/db/auth/authorization_manager_global.h"
#include "mongo/db/auth/user_management_commands_parser.h"
-#include "mongo/client/dbclientinterface.h"
-#include "mongo/config.h"
#include "mongo/db/commands.h"
#include "mongo/db/jsobj.h"
#include "mongo/rpc/write_concern_error_detail.h"
@@ -85,8 +85,8 @@ public:
int options,
string& errmsg,
BSONObjBuilder& result) {
- return grid.catalogManager(txn)
- ->runUserManagementWriteCommand(txn, getName(), dbname, cmdObj, &result);
+ return grid.catalogManager(txn)->runUserManagementWriteCommand(
+ txn, getName(), dbname, cmdObj, &result);
}
virtual void redactForLogging(mutablebson::Document* cmdObj) {
@@ -395,8 +395,8 @@ public:
int options,
string& errmsg,
BSONObjBuilder& result) {
- return grid.catalogManager(txn)
- ->runUserManagementWriteCommand(txn, getName(), dbname, cmdObj, &result);
+ return grid.catalogManager(txn)->runUserManagementWriteCommand(
+ txn, getName(), dbname, cmdObj, &result);
}
} cmdCreateRole;
@@ -817,8 +817,8 @@ public:
int options,
string& errmsg,
BSONObjBuilder& result) {
- return grid.catalogManager(txn)
- ->runUserManagementWriteCommand(txn, getName(), dbname, cmdObj, &result);
+ return grid.catalogManager(txn)->runUserManagementWriteCommand(
+ txn, getName(), dbname, cmdObj, &result);
}
} cmdMergeAuthzCollections;
@@ -916,8 +916,8 @@ public:
string& errmsg,
BSONObjBuilder& result) {
// Run the authSchemaUpgrade command on the config servers
- if (!grid.catalogManager(txn)
- ->runUserManagementWriteCommand(txn, getName(), dbname, cmdObj, &result)) {
+ if (!grid.catalogManager(txn)->runUserManagementWriteCommand(
+ txn, getName(), dbname, cmdObj, &result)) {
return false;
}