summaryrefslogtreecommitdiff
path: root/src/mongo/db/commands.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/commands.cpp')
-rw-r--r--src/mongo/db/commands.cpp7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/mongo/db/commands.cpp b/src/mongo/db/commands.cpp
index 65560607e50..69e6011d8a0 100644
--- a/src/mongo/db/commands.cpp
+++ b/src/mongo/db/commands.cpp
@@ -143,11 +143,7 @@ void Command::htmlHelp(stringstream& ss) const {
ss << "</a>";
ss << "</td>\n";
ss << "<td>";
- if (isWriteCommandForConfigServer()) {
- ss << "W ";
- } else {
- ss << "R ";
- }
+ ss << "UNUSED ";
if (slaveOk())
ss << "S ";
if (adminOnly())
@@ -398,7 +394,6 @@ void Command::generateHelpResponse(OperationContext* txn,
ss << "help for: " << command.name << " ";
command.help(ss);
helpBuilder.append("help", ss.str());
- helpBuilder.append("lockType", command.isWriteCommandForConfigServer() ? 1 : 0);
replyBuilder->setCommandReply(helpBuilder.done());
replyBuilder->setMetadata(rpc::makeEmptyMetadata());