diff options
author | Misha Tyulenev <misha@mongodb.com> | 2016-03-15 14:45:23 -0400 |
---|---|---|
committer | Misha Tyulenev <misha@mongodb.com> | 2016-03-15 14:47:13 -0400 |
commit | 6f684e82c6d0aa1d1cef98f48dcae41010666a9a (patch) | |
tree | efd384590f253241bb577b3ff8c76d0834054bea /src/mongo/db/commands/current_op.cpp | |
parent | 652e3577be3d157cec039d0b017cf7e2d6e2c7c6 (diff) | |
download | mongo-6f684e82c6d0aa1d1cef98f48dcae41010666a9a.tar.gz |
SERVER-23024 remove isWriteCommandForConfigServer method
Diffstat (limited to 'src/mongo/db/commands/current_op.cpp')
-rw-r--r-- | src/mongo/db/commands/current_op.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/mongo/db/commands/current_op.cpp b/src/mongo/db/commands/current_op.cpp index f15f60807e7..680a99ced73 100644 --- a/src/mongo/db/commands/current_op.cpp +++ b/src/mongo/db/commands/current_op.cpp @@ -53,9 +53,6 @@ class CurrentOpCommand : public Command { public: CurrentOpCommand() : Command("currentOp") {} - bool isWriteCommandForConfigServer() const final { - return false; - } bool slaveOk() const final { return true; |