summaryrefslogtreecommitdiff
path: root/src/mongo/db/commands/kill_all_sessions_command.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/commands/kill_all_sessions_command.cpp')
-rw-r--r--src/mongo/db/commands/kill_all_sessions_command.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mongo/db/commands/kill_all_sessions_command.cpp b/src/mongo/db/commands/kill_all_sessions_command.cpp
index d0ef93cb466..907ffbe51d1 100644
--- a/src/mongo/db/commands/kill_all_sessions_command.cpp
+++ b/src/mongo/db/commands/kill_all_sessions_command.cpp
@@ -94,7 +94,8 @@ public:
if (serverGlobalParams.featureCompatibility.getVersion() !=
ServerGlobalParams::FeatureCompatibility::Version::kFullyUpgradedTo36) {
- return appendCommandStatus(result, SessionsCommandFCV34Status(getName()));
+ return CommandHelpers::appendCommandStatus(result,
+ SessionsCommandFCV34Status(getName()));
}
IDLParserErrorContext ctx("KillAllSessionsCmd");
@@ -113,7 +114,8 @@ public:
}
}
- return appendCommandStatus(result, killSessionsCmdHelper(opCtx, result, patterns));
+ return CommandHelpers::appendCommandStatus(result,
+ killSessionsCmdHelper(opCtx, result, patterns));
}
} killAllSessionsCommand;